當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Instant getNano()用法及代碼示例


Instant類的getNano()方法用於從第二秒開始在此瞬間表示的時間軸中返回納秒數。 nanosecond-of-second值,它測量從getEpochSecond()返回的第二個值起的納秒總數。

用法:

public int getNano()

返回值:此方法返回第二個值內的納秒,該值始終為正,並且永遠不會超過999、999、999。


以下示例程序旨在說明getNano()方法:

示例1:

// Java program to demonstrate 
// Instant.getNano() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant 
            = Instant.parse("2018-12-30T19:34:50.63Z"); 
  
        // get nano second of second secondvalue 
        // using getNano() 
        int value = instant.getNano(); 
  
        // print result 
        System.out.println("nanoseconds value: "
                           + value); 
    } 
}
輸出:
nanoseconds value: 630000000

示例2:

// Java program to demonstrate 
// Instant.getNano() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant = Instant.now(); 
  
        // current Instant 
        System.out.println("Current Instant:"
                           + instant); 
  
        // get nano second of second secondvalue 
        // using getNano() 
        int value = instant.getNano(); 
  
        // print result 
        System.out.println("nanoseconds value: "
                           + value); 
    } 
}
輸出:
Current Instant:2018-11-27T04:21:27.029Z
nanoseconds value: 29000000

參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#getNano()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant getNano() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。