Java 中 Instant 的 minusSeconds() 方法
使用 Java 中 Instant 类的 minusSeconds() 方法可以获取对其减去一些秒时的不可变副本。该方法需要一个参数,即要减去的秒数,它返回减去秒数之后的时刻。
一个演示的程序如下 −
示例
import java.time.*; public class Demo { public static void main(String[] args) { Instant i = Instant.now(); System.out.println("The current instant is: " + i); System.out.println("An instant with 10 seconds subtracted is: " + i.minusSeconds(10)); } }
输出
The current instant is: 2019-02-12T12:29:46.262Z An instant with 10 seconds subtracted is: 2019-02-12T12:29:36.262Z
现在让我们了解上述程序。
首先显示当前时刻。然后,使用 minusSeconds() 方法获取减去 10 秒后的时刻的不可变副本并显示该副本。演示此过程的代码段如下 −
Instant i = Instant.now(); System.out.println("The current instant is: " + i); System.out.println("An instant with 10 seconds subtracted is: " + i.minusSeconds(10));
广告