LocalTime getNano() method in Java


The nanosecond of second for a particular LocalTime can be obtained using the getNano() method in the LocalTime class in Java. This method requires no parameters and it returns the nanosecond of second in the range of 0 to 999, 999, 999.

A program that demonstrates this is given as follows

Example

 Live Demo

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      LocalTime lt = LocalTime.parse("23:15:30.53");
      System.out.println("The LocalTime is: " + lt);
      System.out.println("The nanosecond is: " + lt.getNano());
   }
}

output

The LocalTime is: 23:15:30.530
The nanosecond is: 530000000

Now let us understand the above program.

First the LocalTime is displayed. Then the nanosecond of second for the LocalTime is displayed using the getNano() method. A code snippet that demonstrates this is as follows:

LocalTime lt = LocalTime.parse("23:15:30.53");
System.out.println("The LocalTime is: " + lt);
System.out.println("The nanosecond is: " + lt.getNano());

Updated on: 30-Jul-2019

130 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements