OffsetDateTime plusHours(long hours) example
Description
OffsetDateTime plusHours(long hours)
returns a copy of this
OffsetDateTime with the specified period in hours added.
Syntax
plusHours
has the following syntax.
public OffsetDateTime plusHours(long hours)
Example
The following example shows how to use plusHours
.
import java.time.OffsetDateTime;
/*from w ww.j a v a 2 s .com*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.plusHours(20);
System.out.println(d);
}
}
The code above generates the following result.