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


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


Duration类plusHours()方法

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

用法:

    public Duration plusHours(long hrs_val);

参数:

  • long hrs_val– 表示要添加到此 Duration 的小时值。

返回值:

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

例:

// Java program to demonstrate the example 
// of plusHours(long hrs_val) method of Duration

import java.time.*;

public class PlusHoursOfDuration {
    public static void main(String args[]) {
        long hours = 5;

        // Instantiates two Duration objects
        Duration du1 = Duration.ofHours(6);
        Duration du2 = Duration.parse("P2DT2H20M");

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

        System.out.println();

        // adds the given duration in hours with this 
        // Duration du1 and returns the Duration i.e. 
        // here we are adding the given 5 hours with 
        // this du1 that holds the value of 6 hours 
        // (6H +5H = 11H)
        Duration plus_val = du1.plusHours(hours);

        // Display plus_val
        System.out.println("du1.plusHours(hours):" + plus_val);

        // adds the given duration in hours with this 
        // Duration du2 and returns the Duration 
        // i.e. here we are adding the given 5 hours 
        // with this du2 that holds the value of 
        // 2D:2H:20M (2D = 48H , 2H +5H =55H)
        plus_val = du2.plusHours(hours);

        // Display plus_val
        System.out.println("du2.plusHours(hours):" + plus_val);
    }
}

输出

du1:PT6H
du2:PT50H20M
hours to add:5

du1.plusHours(hours):PT11H
du2.plusHours(hours):PT55H20M


相关用法


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