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


Java Duration plus()用法及代码示例


Duration类plus()方法

用法:

    public Duration plus(Duration d);
    public Duration plus(long amt, TemporalUnit t_unit);
  • plus() 方法可在java.time包。
  • plus(Duration d) 方法用于将给定的 Duration 添加到此 Duration 并返回 Duration。
  • plus(long amt, TemporalUnit t_unit) 方法用于将给定单位的给定数量添加到此 Duration 并返回 Duration。
  • 这些方法在执行加法时可能会抛出异常。
    算术异常:当计算结果超出表示此对象的限制时,可能会抛出此异常。
  • 这些是非静态方法,可以通过类对象访问,如果我们尝试使用类名访问这些方法,则会出现错误。

参数:

  • 在第一种情况下,加上(持续时间 d),
    • Duration d- 表示要添加到此持续时间的持续时间。
  • 在第一种情况下,plus(long amt, TemporalUnit t_unit),
    • long amt- 表示要添加到此 Duration 中的数量(以单位为单位)。
    • TemporalUnit t_unit- 表示计量给定数量的单位。

返回值:

在这两种情况下,方法的返回类型都是Duration

  • 在第一种情况下,它将保存 value-added 给定持续时间的 Duration 返回到此 Duration。
  • 在第二种情况下,它将保持 value-added 单位中给定数量的 Duration 返回到此 Duration。

例:

// Java program to demonstrate the example 
// of plus() method of Duration

import java.time.*;
import java.time.temporal.*;

public class PlusOfDuration {
    public static void main(String args[]) {
        long amt = 10;

        // Instantiates two Duration objects
        Duration du1 = Duration.ofMinutes(3);
        Duration du2 = Duration.parse("P2DT2H20M20S");

        // Display du1, du2 
        System.out.println("du1:" + du1);
        System.out.println("du2:" + du2);
        System.out.println("amt to add:" + amt);

        System.out.println();

        // adds the given duration du1
        // with this Duration du2 and returns
        // the Duration i.e. here we are adding
        // the given 3 minutes with this du2 
        // that holds the value of 2D:2H:20M:20S
        Duration plus_val = du1.plus(du2);

        // Display plus_val
        System.out.println("du1.plus(du2):" + plus_val);

        // adds the given amount  in the given unit 
        // with this Duration  and returns the Duration i.e. 
        // here we are adding the amt 10 in minutes unit 
        // with this du2 that holds the value of 2D:2H:20M:20S
        plus_val = du2.plus(amt, ChronoUnit.MINUTES);

        // Display plus_val
        System.out.println("du2.plus(amt,ChronoUnit.MINUTES):" + plus_val);
    }
}

输出

du1:PT3M
du2:PT50H20M20S
amt to add:10

du1.plus(du2):PT50H23M20S
du2.plus(amt,ChronoUnit.MINUTES):PT50H30M20S


相关用法


注:本文由纯净天空筛选整理自 Java Duration Class | plus() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。