OffsetDateTime minusHours(long hours) example
Description
OffsetDateTime minusHours(long hours)
returns a copy of this OffsetDateTime with the specified period in hours subtracted.
Syntax
minusHours
has the following syntax.
public OffsetDateTime minusHours(long hours)
Example
The following example shows how to use minusHours
.
import java.time.OffsetDateTime;
//from w w w. j av a2s . co m
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.minusHours(120);
System.out.println(d);
}
}
The code above generates the following result.