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


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


Instant類的plusNanos()方法將作為參數傳遞的納秒值添加到此瞬時,並將結果作為瞬時對象返回。此返回的Instant是不可變的。

用法:

public Instant plusNanos(long nanosToAdd)

參數:此方法接受一個要添加的納秒參數nanosToAdd。


返回值:此方法返回Instant,而不是null。

異常:此方法引發以下異常:

  • DateTimeException:如果結果超過最大或最小瞬間。
  • ArithmeticException:如果發生數字溢出。

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

示例1:

// Java program to demonstrate 
// Instant.plusNanos() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a Instant object 
        Instant instant 
            = Instant.parse("2018-10-28T19:34:50.63Z"); 
  
        // addition of 840000000 nanoseconds 
        // means .84 seconds to this instant 
        Instant returnedValue 
            = instant.plusNanos(840000000); 
  
        // print result 
        System.out.println("Returned Instant: "
                           + returnedValue); 
    } 
}
輸出:
Returned Instant: 2018-10-28T19:34:51.470Z

示例2:

// Java program to demonstrate 
// Instant.plusNanos() 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); 
  
        // addition of 430000000 nanoseconds 
        // means .43 seconds to this instant 
        Instant returnedValue 
            = instant.plusNanos(430000000); 
  
        // print result 
        System.out.println("Returned Instant: "
                           + returnedValue); 
    } 
}
輸出:
Current instant: 2018-11-28T05:32:40.818Z
Returned Instant: 2018-11-28T05:32:41.248Z

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



相關用法


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