Java 中的 Duration plusSeconds() 方法
可以在 Java 的 Duration 类中使用 plusSeconds() 方法获取对其添加了一些秒的不变副本。此方法需要一个参数,即要添加的秒数,并且返回添加了秒的持续时间。
下面提供了一个演示此方法的程序 -
示例
import java.time.Duration; public class Demo { public static void main(String[] args) { Duration d = Duration.ofSeconds(12); System.out.println("The duration is: " + d); System.out.println("A copy with 5 seconds added to the duration is: " + d.plusSeconds(5)); } }
输出
The duration is: PT12S A copy with 5 seconds added to the duration is: PT17S
现在让我们理解上述程序。
首先显示持续时间。然后使用 plusSeconds() 方法获取持续时间的不可变副本,其中添加了 5 秒,并显示出来。以下代码片段演示了这一点 -
Duration d = Duration.ofSeconds(12); System.out.println("The duration is: " + d); System.out.println("A copy with 5 seconds added to the duration is: " + d.plusSeconds(5));
广告