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


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


Duration类ofHours()方法

  • ofHours() 方法可在java.time包。
  • ofHours() 方法用于表示此 Duration 中的给定小时数。
  • ofHours() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到错误。
  • ofHours() 方法可能会在表示小时的时间抛出异常。
    算术异常:当给定的小时值超过此 Duration 的长度时,可能会抛出此异常。

用法:

    public static Duration ofHours(long hrs_val);

参数:

  • long hrs_val– 表示价值的小时数。

返回值:

这个方法的返回类型是Duration,它返回保存给定小时值的 Duration。

例:

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

import java.time.*;

public class OfHoursOfDuration {
    public static void main(String args[]) {
        long hrs_val = 3;

        // returns the Duration that holds the value of the given
        // argument i.e. here we are representing
        // 3 hrs (3H) in this Duration du
        Duration du = Duration.ofHours(hrs_val);

        // Display du
        System.out.println("Duration.ofHours(3):" + du);
    }
}

输出

Duration.ofHours(3):PT3H


相关用法


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