Java 中 Duration plusNanos() 方法
可以在 Java 中使用 Duration 类中的 plusNanos() 方法来获取一个不可变的持续时间副本,其中添加了一些纳秒。此方法需要一个参数,即要添加的纳秒数,并且返回已添加纳秒的持续时间。
以下给出了演示此程序的示例 −
示例
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration d = Duration.ofSeconds(1); System.out.println("The duration is: " + d); System.out.println("A copy with 100 nano seconds added to the duration is: " + d.plusNanos(100)); } }
输出
The duration is: PT1S A copy with 100 nano seconds added to the duration is: PT1.0000001S
现在,让我们了解以上程序。
首先,显示持续时间。然后,使用 plusNanos() 方法获取持续时间的不可变副本,其中添加了 10 纳秒,并显示该副本。以下代码片段演示了此过程 −
Duration d = Duration.ofSeconds(1); System.out.println("The duration is: " + d); System.out.println("A copy with 100 nano seconds added to the duration is: " + d.plusNanos(100));
广告