java.time.YearMonth.until(Temporal endExclusive, TemporalUnit unit)方法

2019-10-16 22:36:07

java.time.YearMonth.until(Temporal endExclusive,TemporalUnit unit)方法根據指定的單位計算到另一個日期的時間量。

宣告

以下是java.time.YearMonth.until(Temporal endExclusive,TemporalUnit unit)方法的宣告。

public long until(Temporal endExclusive, TemporalUnit unit)

引數

  • endDateExclusive - 結束日期(包函),轉換為YearMonth,不為null
  • unit - 衡量總量的單位,而不是null

返回值

此日期和結束日期之間的時間量。

例外

  • DateTimeException - 如果無法計算金額,或者結束時間不能轉換為YearMonth
  • UnsupportedTemporalTypeException - 如果不支援該單位。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.YearMonth.until(Temporal endExclusive,TemporalUnit unit)方法的用法。

package com.yiibai;

import java.time.YearMonth;
import java.time.temporal.ChronoUnit;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.parse("2015-12");
      YearMonth date1 = YearMonth.now();
      System.out.println(date.until(date1, ChronoUnit.YEARS));  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

2