The
minusNanos() method of OffsetTime class in Java returns a copy of this OffsetTime with the specified Nanos in the parameter getting subtracted.
Syntax :
public OffsetTime minusNanos(long Nanos)
Parameter: This method accepts a single parameter
Nanos which the Nanos to be subtracted. It may be negative.
Return Value: It returns a OffsetTime based on this time with the Nanos subtracted and it is not null.
Below programs illustrate the minusNanos() method:
Program 1 :
Output:
After subtraction, time is: 11:10:09.999999995+05:05
Program 2 :