可以使用minusNanos()
Java中Instant类中的方法来获取不可变的瞬间副本,其中减去了十亿分之一秒。此方法需要一个参数,即要减去的纳秒数,并返回减去的纳秒数。
演示此的程序如下所示-
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 1000000000 nanoseconds subtracted is: " + i.minusNanos(1000000000)); } }
输出结果
The current instant is: 2019-02-12T12:36:26.511Z An instant with 1000000000 nanoseconds subtracted is: 2019-02-12T12:36:25.511Z
现在让我们了解上面的程序。
首先显示当前时刻。然后,使用该minusNanos()
方法获得减去1000000000纳秒的不变时刻的副本,并显示出来。演示这的代码片段如下-
Instant i = Instant.now(); System.out.println("The current instant is: " + i); System.out.println("An instant with 1000000000 nanoseconds subtracted is: " + i.minusNanos(1000000000));