java.time.Instant.until(Temporal endExclusive,TemporalUnit unit)
方法根據指定的單位計算到另一個瞬間的時間量。
以下是java.time.Instant.until(Temporal endExclusive,TemporalUnit unit)
方法的宣告。
public long until(Temporal endExclusive, TemporalUnit unit)
endExclusive
- 結束日期,轉換為Instant
,而不是null
。unit
- 衡量金額的單位,而不是null
。此瞬間與結束瞬間之間的時間量。
DateTimeException
- 如果無法計算金額,或者結束時間不能轉換為Instant
。UnsupportedTemporalTypeException
- 如果不支援該單位。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.Instant.until(Temporal endExclusive,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-12-03T10:15:30.00Z");
Instant instant1 = Instant.parse("2017-12-03T10:18:30.00Z");
System.out.println(instant.until(instant1, ChronoUnit.SECONDS));
}
}
編譯並執行上面的程式,這將產生以下結果 -
180