LocalTime plusNanos() method in Java with Examples
The plusNanos() method of LocalTime class used to add specified no of nanoseconds value to this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.
Syntax:
public LocalTime plusNanos(long nanosecondsToAdd)
Parameters: This method accepts a single parameter nanosecondsToAdd which is the value of nanoseconds to be added, it can be a negative value.
Return value: This method returns a LocalTime based on this time with the nanoseconds added.
Below programs illustrate the plusNanos() method:
Program 1:
// Java program to demonstrate // LocalTime.plusNanos() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalTime object LocalTime time = LocalTime.parse("19:34:50.63"); // print LocalTime System.out.println("LocalTime before add: " + time); // add 34000000 nanoseconds using plusNanos() LocalTime value = time.plusNanos(34000000); // print result System.out.println("LocalTime after add: " + value); } } |
LocalTime before add: 19:34:50.630 LocalTime after add: 19:34:50.664
Program 2:
// Java program to demonstrate // LocalTime.plusNanos() method import java.time.*; public class GFG { public static void main(String[] args) { // create a LocalTime object LocalTime time = LocalTime.parse("01:00:01"); // print LocalTime System.out.println("LocalTime before add: " + time); // add -971200000 nanoseconds using plusNanos() LocalTime value = time.plusNanos(-971200000); // print result System.out.println("LocalTime after add: " + value); } } |
LocalTime before add: 01:00:01 LocalTime after add: 01:00:00.028800
References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#plusNanos(long)
Recommended Posts:
- OffsetTime plusNanos() method in Java with Examples
- Instant plusNanos() method in Java with Examples
- OffsetDateTime plusNanos() method in Java with examples
- ZonedDateTime plusNanos() method in Java with Examples
- LocalDateTime plusNanos() method in Java with Examples
- Duration plusNanos(long) method in Java with Examples
- LocalTime until() Method in Java with Examples
- LocalTime from() method in Java with Examples
- LocalTime plus() method in Java with Examples
- LocalTime get() method in Java with Examples
- LocalTime with() Method in Java with Examples
- LocalTime withMinute() method in Java with Examples
- LocalTime plusHours() method in Java with Examples
- LocalTime minusMinutes() method in Java with Examples
- LocalTime atDate() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



