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