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 ofDays(long)用法及代码示例
- Java Duration ofSeconds(long)用法及代码示例
- Java Duration ofMinutes(long)用法及代码示例
- Java Duration ofMillis(long)用法及代码示例
- Java Duration ofMillis()用法及代码示例
- Java Duration ofHours()用法及代码示例
- Java Duration of()用法及代码示例
- Java Duration ofSeconds(long, long)用法及代码示例
- Java Duration ofSeconds()用法及代码示例
- Java Duration ofNanos()用法及代码示例
- Java Duration ofHours(long)用法及代码示例
- Java Duration of(long, TemporalUnit)用法及代码示例
- Java Duration ofMinutes()用法及代码示例
- Java Duration ofNanos(long)用法及代码示例
- Java Duration compareTo()用法及代码示例
- Java Duration dividedBy()用法及代码示例
- Java Duration minusMillis(long)用法及代码示例
- Java Duration plus(Duration)用法及代码示例
- Java Duration plus(long, TemporalUnit)用法及代码示例
- Java Duration subtractFrom(Temporal)用法及代码示例
注:本文由纯净天空筛选整理自 Java Duration Class | ofDays() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。