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