当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。