java.time.Instant.plus(TemporalAmount amountToAdd)
方法返回此瞬間的副本,並新增了指定的數量。
以下是java.time.Instant.plus(TemporalAmount amountToAdd)
方法的宣告。
public Instant plus(TemporalAmount amountToAdd)
amountToAdd
- 要新增的數量,而不是null
。基於此瞬間的Instant
,新增了指定的金額,而不是null
。
DateTimeException
- 如果無法新增。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Instant.plus(TemporalAmount amountToAdd)
方法的用法。
package com.yiibai;
import java.time.Instant;
import java.time.Duration;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
Duration duration = Duration.ofHours(5);
Instant result = instant.plus(duration);
System.out.println(result);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-02-03T15:37:30Z