The minusNanos() method of LocalTime class is used to subtract specified no of nanoseconds value from this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.
Syntax:
public LocalTime minusNanos(long nanosecondsToSubtract)
Parameters: This method accepts a single parameter nanosecondsToSubtract which is the value of nanoseconds to be subtracted, it can be a negative value.
Return value: This method returns a LocalTime based on this time with the nanoseconds subtracted.
Below programs illustrate the minusNanos() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalTime time
= LocalTime.parse( "19:34:50.63" );
System.out.println( "LocalTime before subtraction: "
+ time);
LocalTime value = time.minusNanos( 34000000 );
System.out.println( "LocalTime after subtraction: "
+ value);
}
}
|
Output:
LocalTime before subtraction: 19:34:50.630
LocalTime after subtraction: 19:34:50.596
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalTime time
= LocalTime.parse( "01:00:01" );
System.out.println( "LocalTime before subtraction: "
+ time);
LocalTime value = time.minusNanos( 971200000 );
System.out.println( "LocalTime after subtraction: "
+ value);
}
}
|
Output:
LocalTime before subtraction: 01:00:01
LocalTime after subtraction: 01:00:00.028800
References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#minusNanos(long)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
04 Dec, 2018
Like Article
Save Article