OffsetDateTime minusHours() method in Java with examples
The minusHours() method of OffsetDateTime class in Java returns a copy of this OffsetDateTime with the specified number of hours subtracted from the parsed date and time.
Syntax:
public OffsetDateTime minusHours(long hours)
Parameter: This method accepts a single parameter hours which specifies the hours to be subtracted from the parsed date. It can be negative also, in that case, it adds the number of hours to it.
Return Value: It returns an OffsetDateTime based on this date-time with the hours subtracted and not null.
Exceptions: The program throws a DateTimeException when it exceeds the supported data and time range.
Below programs illustrate the minusHours() method:
Program 1:
// Java program to demonstrate the minusHours() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00" ); // Prints dates System.out.println( "Date1: " + date1); // Subtracts the number of hours System.out.println( "Date1 after subtracting hours: " + date1.minusHours(- 120 )); } } |
Date1: 2018-12-12T13:30:30+05:00 Date1 after subtracting hours: 2018-12-17T13:30:30+05:00
Program 2 :
// Java program to demonstrate the isEqual() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00" ); // Prints dates System.out.println( "Date1: " + date1); // Subtracts the number of hours System.out.println( "Date1 after subtracting hours: " + date1.minusHours( 140 )); } } |
Date1: 2018-12-12T13:30:30+05:00 Date1 after subtracting hours: 2018-12-06T17:30:30+05:00
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#minusHours(long)
Recommended Posts:
- LocalTime minusHours() method in Java with Examples
- ZonedDateTime minusHours() method in Java with Examples
- OffsetTime minusHours() method in Java with examples
- Duration minusHours(long) method in Java with Examples
- OffsetDateTime from() method in Java with examples
- OffsetDateTime with() Method in Java with Examples
- OffsetDateTime until() Method in Java with Examples
- OffsetDateTime get() method in Java with examples
- OffsetDateTime withMonth() method in Java with examples
- OffsetDateTime withSecond() method in Java with examples
- OffsetDateTime compareTo() method in Java with examples
- OffsetDateTime adjustInto() method in Java with examples
- OffsetDateTime minusWeeks() method in Java with examples
- OffsetDateTime withMinute() method in Java with examples
- OffsetDateTime minusNanos() method in Java with examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.