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


Java Duration addTo(Temporal)用法及代碼示例


java.time包中的Duration Class的addTo(Temporal)方法用於將此持續時間添加到指定的臨時對象中,並作為參數傳遞。

用法:

public Temporal addTo?(Temporal temporalObject)

參數:此方法接受參數temporalObject,該參數是在此持續時間內要調整的量。它不能為空。


返回值:此方法返回一個相同類型的對象,將其TemporalObject調整為該對象。

異常:該方法拋出:

  • DateTimeException:如果無法添加。
  • ArithmeticException:如果發生數字溢出。

以下示例說明了Duration.addTo()方法:

示例1:

// Java code to illustrate addTo() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Duration 1 using parse() method 
        Duration duration1 
            = Duration.parse("P2DT3H4M"); 
  
        // Get the time to be adjusted 
        LocalDateTime currentTime 
            = LocalDateTime.now(); 
  
        System.out.println("Original time: "
                           + currentTime); 
  
        // Adjust the time 
        // using addTo() method 
        System.out.println( 
            duration1 
                .addTo(currentTime)); 
    } 
}
輸出:
Original time: 2018-11-26T07:01:13.535
2018-11-28T10:05:13.535

示例2:

// Java code to illustrate addTo() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Duration 
        Duration duration2 
            = Duration.ofDays(-5); 
  
        // Get the time to be adjusted 
        LocalDateTime currentTime 
            = LocalDateTime.now(); 
  
        System.out.println("Original time: "
                           + currentTime); 
  
        // Adjust the time 
        // using addTo() method 
        System.out.println( 
            duration2 
                .addTo(currentTime)); 
    } 
}
輸出:
Original time: 2018-11-26T07:01:16.615
2018-11-21T07:01:16.615

參考: Oracle Doc



相關用法


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