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

2019-10-16 22:34:36

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

宣告

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

public long until(Temporal endExclusive, TemporalUnit unit)

引數

  • endDateExclusive - 結束日期(包函),轉換為ZonedDateTime,而不是null
  • `unit· - 衡量金額的單位,而不是空。

返回值

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

例外

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

範例

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

package com.yiibai;

import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      ZonedDateTime date1 = ZonedDateTime.now();
      System.out.println(date.until(date1, ChronoUnit.HOURS));  
   }
}

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

6603