可以使用plus()
Java中Instant类中的方法来获取添加了时间单位的即时不变副本。此方法需要两个参数,即将时间添加到瞬间和要添加到其中的单位。它还返回添加了所需时间单位的时刻的不变副本。
演示此的程序如下所示-
import java.time.*; import java.time.temporal.ChronoUnit; public class Demo { public static void main(String[] args) { Instant i = Instant.now(); System.out.println("The current instant is: " + i); Instant add = i.plus(2, ChronoUnit.HOURS); System.out.println("The instant with 2 hours added is: " + add); } }
输出结果
The current instant is: 2019-02-13T06:33:27.414Z The instant with 2 hours added is: 2019-02-13T08:33:27.414Z
现在让我们了解上面的程序。
首先显示当前时刻。然后,使用该plus()
方法获得添加2小时的不变时刻的副本,并显示出来。演示这的代码片段如下-
Instant i = Instant.now(); System.out.println("The current instant is: " + i); Instant add = i.plus(2, ChronoUnit.HOURS); System.out.println("The instant with 2 hours added is: " + add);