java.time.Instant.minus(TemporalAmount amountToSubtract)
方法返回此瞬間的副本,並減去指定的量。
以下是java.time.Instant.minus(TemporalAmount amountToSubtract)
方法的宣告。
public Instant minus(TemporalAmount amountToSubtract)
amountToSubtract
- 要減去的數量,而不是null。基於此瞬間的瞬間減去指定的數量,而不是空。
DateTimeException
- 如果無法進行減法。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Instant.minus(TemporalAmount amountToSubtract)
方法的用法。
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.minus(duration);
System.out.println(result);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-02-03T05:37:30Z