當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java OffsetDateTime until()用法及代碼示例


OffsetDateTime類的until()方法用於使用TemporalUnit計算兩個OffsetDateTime對象之間的時間量。起點和終點是這個點,指定的OffsetDateTime作為參數傳遞。如果結束在開始之前,結果將為負。計算返回一個整數,代表兩個OffsetDateTime之間的完整單位數。此實例是不可變的,不受此方法調用的影響。

用法:

public long until(Temporal endExclusive, TemporalUnit unit)

參數:此方法接受兩個參數endExclusive,它是結束日期,exclusive,它轉換為OffsetDateTime,而unit是度量數量的單位。


返回值:此方法返回此OffsetDateTime與結束OffsetDateTime之間的時間量。

異常:此方法引發以下異常:

  • DateTimeException-如果無法計算數量,或者結束時態不能轉換為OffsetDateTime。
  • UnsupportedTemporalTypeException-如果不支持該單元。
  • ArithmeticException-如果發生數字溢出。

以下示例程序旨在說明until()方法:
示例1:

// Java program to demonstrate 
// OffsetDateTime.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create OffsetDateTime objects 
        OffsetDateTime date1 = OffsetDateTime.parse("2018-12-12T13:30:30+05:00"); 
        OffsetDateTime date2 = OffsetDateTime.parse("2015-12-12T13:30:30+05:00"); 
  
        // apply until method of OffsetDateTime class 
        long result 
            = date2.until(date1, 
                          ChronoUnit.MONTHS); 
  
        // print results 
        System.out.println("Result in MONTHS: "
                           + result); 
    } 
}
輸出:
Result in MONTHS: 36

示例2:

// Java program to demonstrate 
// OffsetDateTime.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create OffsetDateTime objects 
        OffsetDateTime date1 = OffsetDateTime.parse("2018-12-12T13:30:30+05:00"); 
        OffsetDateTime date2 = OffsetDateTime.parse("2015-12-12T13:30:30+05:00"); 
  
        // apply until method of OffsetDateTime class 
        long result 
            = date1.until(date2, 
                          ChronoUnit.YEARS); 
  
        // print results 
        System.out.println("Result in YEARS: "
                           + result); 
    } 
}
輸出:
Result in YEARS: -3

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 OffsetDateTime until() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。