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


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


Duration类plusDays()方法

  • plusDays() 方法可在java.time包。
  • plusDays() 方法用于将给定的以天为单位的持续时间添加到此持续时间并返回持续时间。
  • plusDays() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • plusDays() 方法可能会在执行加法时抛出异常。
    算术异常:当计算结果超过此 Duration 的长度时,可能会抛出此异常。

用法:

    public Duration plusDays(long day_val);

参数:

  • long day_val– 表示要添加到此 Duration 的天值。

返回值:

这个方法的返回类型是Duration,它返回包含给定天数添加到此 Duration 的值的 Duration。

例:

// Java program to demonstrate the example 
// of plusDays(long day_val) method of Duration

import java.time.*;

public class PlusDaysOfDuration {
    public static void main(String args[]) {
        long days = 2;

        // Instantiates two Duration objects
        Duration du1 = Duration.ofDays(3);
        Duration du2 = Duration.parse("P2DT20M");

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

        System.out.println();

        // adds the given duration in days with this
        // Duration du1 and returns the Duration 
        // i.e. here we are adding the given 2 days 
        // with this du1 that holds the value of 3 days 
        // i.e.( 72 hrs + 48 hrs = 120 hrs )
        Duration plus_val = du1.plusDays(days);

        // Display plus_val
        System.out.println("du1.plusDays(days):" + plus_val);

        // adds the given duration in days with this 
        // Duration du2 and returns the Duration 
        // i.e. here we are adding the given 2 days 
        // with this du2 that holds the value of 2D:20M 
        // i.e.( 48 hrs + 48 hrs = 96 hrs )
        plus_val = du2.plusDays(days);

        // Display plus_val
        System.out.println("du2.plusDays(days):" + plus_val);
    }
}

输出

du1:PT72H
du2:PT48H20M
days to add:2

du1.plusDays(days):PT120H
du2.plusDays(days):PT96H20M


相关用法


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