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


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


Duration类ofDays()方法

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

用法:

    public static Duration ofDays(long day_val);

参数:

  • long day_val– 表示价值的天数。

返回值:

这个方法的返回类型是Duration,它返回保存给定天数的持续时间。

例:

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

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

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

        // returns the Duration that holds 
        // the value of the given argument i.e. 
        // here we are representing 3 days (72H) 
        // in this Duration du1
        Duration du1 = Duration.ofDays(days_val);

        // Display du1
        System.out.println("Duration.ofDays(3):" + du1);
    }
}

输出

Duration.ofDays(3):PT72H


相关用法


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