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