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