java.time.Instant.getNano() Method Example



Description

The java.time.Instant.getNano() method gets the number of nanoseconds, later along the time-line, from the start of the second.

Declaration

Following is the declaration for java.time.Instant.getNano() method.

public int getNano()

Return Value

the nanoseconds within the second, always positive, never exceeds 999,999,999.

Example

The following example shows the usage of java.time.Instant.getNano() method.

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.now();
      System.out.println(instant.getNano());
   }
}

Let us compile and run the above program, this will produce the following result −

520000000
Advertisements