Duration类withNanos()方法
- withNanos() 方法可在
java.time
包。 - withNanos() 方法用于用给定的纳秒表示此持续时间。
- withNanos() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
- withNanos() 方法在用给定的纳秒表示 Duration 时可能会抛出异常。
日期时间异常:当给定的参数无效时,可能会抛出此异常。
用法:
public Duration withNanos(int nanos_val);
参数:
int nanos_val
– 代表纳秒以表示从 [0...999,999,999] 开始的持续时间。
返回值:
这个方法的返回类型是Duration
,它返回此 Duration 与给定的纳秒。
例:
// Java program to demonstrate the example
// of withNanos(int nanos_val) method of Duration
import java.time.*;
public class WithNanosOfDuration {
public static void main(String args[]) {
// Instantiates two Duration objects
Duration du1 = Duration.ofMinutes(2);
Duration du2 = Duration.parse("P0DT1H0M");
// Display du1 and du2
System.out.println("du1:" + du1);
System.out.println("du2:" + du2);
// represents this Duration
// du1 with the given nanoseconds
Duration with_nanos = du1.withNanos(50000);
// Display with_nanos
System.out.println("du1.withNanos(50000):" + with_nanos);
// represents this Duration
// du2 with the given nanoseconds
with_nanos = du2.withNanos(50000);
// Display with_nanos
System.out.println("du2.withNanos(50000):" + with_nanos);
}
}
输出
du1:PT2M du2:PT1H du1.withNanos(50000):PT2M0.00005S du2.withNanos(50000):PT1H0.00005S
相关用法
- Java Duration withNanos(long)用法及代码示例
- Java Duration withSeconds(long)用法及代码示例
- Java Duration withSeconds()用法及代码示例
- 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 toNanosPart()用法及代码示例
- Java Duration subtractFrom()用法及代码示例
- Java Duration toSeconds()用法及代码示例
- Java Duration multipliedBy()用法及代码示例
- Java Duration minusNanos(long)用法及代码示例
- Java Duration minusMinutes(long)用法及代码示例
- Java Duration minusDays(long)用法及代码示例
- Java Duration toMillis()用法及代码示例
- Java Duration ofSeconds(long)用法及代码示例
- Java Duration ofMinutes(long)用法及代码示例
- Java Duration multipliedBy(long)用法及代码示例
注:本文由纯净天空筛选整理自 Java Duration Class | withNanos() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。