java.time.OffsetDateTime.until(Temporal endExclusive,TemporalUnit unit)
方法根據指定的單位計算到另一個日期時間的時間量。
以下是java.time.OffsetDateTime.until(Temporal endExclusive,TemporalUnit unit)
方法的宣告。
public long until(Temporal endExclusive, TemporalUnit unit)
endDateExclusive
- 結束日期(包含),轉換為OffsetDateTime
,而不是null
。unit
- 衡量總數的單位,而不是null
。此日期時間與結束日期時間之間的時間量。
DateTimeException
- 如果無法計算金額,或者結束時間不能轉換為OffsetDateTime
。UnsupportedTemporalTypeException
- 如果不支援該單位。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.OffsetDateTime.until(Temporal endExclusive,TemporalUnit unit)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
import java.time.temporal.ChronoUnit;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.parse("2017-01-03T10:15:30+01:00");
OffsetDateTime date1 = OffsetDateTime.now();
System.out.println(date.until(date1, ChronoUnit.HOURS));
}
}
編譯並執行上面的程式,這將產生以下結果 -
8566