Duration类ofMillis()方法
- ofMillis() 方法可在
java.time
包。 - ofMillis() 方法用于表示此 Duration 中的给定毫秒数。
- ofMillis() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到错误。
- ofMillis() 方法表示毫秒时可能会抛出异常。
算术异常:当给定的毫秒值超过此 Duration 的长度时,可能会引发此异常。
用法:
public static Duration ofMillis(long millis_val);
参数:
long millis_val
– 表示值的毫秒数。
返回值:
这个方法的返回类型是Duration
,它返回保存给定毫秒值的 Duration。
例:
// Java program to demonstrate the example
// of ofMillis(long millis_val) method of Duration
import java.time.*;
public class OfMillisOfDuration {
public static void main(String args[]) {
long millis_val = 5000;
// returns the Duration that holds the value
// of the given argument i.e.
// here we are representing
// 5000 ms (1s = 1000 ms)in this Duration
// du 5000 ms in 5S
Duration du = Duration.ofMillis(millis_val);
// Display du
System.out.println("Duration.ofMillis(millis_val):" + du);
}
}
输出
Duration.ofMillis(millis_val):PT5S
相关用法
- Java Duration ofMillis(long)用法及代码示例
- Java Duration ofMinutes(long)用法及代码示例
- Java Duration ofMinutes()用法及代码示例
- Java Duration ofSeconds(long)用法及代码示例
- Java Duration ofDays()用法及代码示例
- Java Duration ofHours()用法及代码示例
- Java Duration of()用法及代码示例
- Java Duration ofSeconds(long, long)用法及代码示例
- Java Duration ofSeconds()用法及代码示例
- Java Duration ofDays(long)用法及代码示例
- Java Duration ofNanos()用法及代码示例
- Java Duration ofHours(long)用法及代码示例
- Java Duration of(long, TemporalUnit)用法及代码示例
- 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 | ofMillis() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。