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


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


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

用法:

public long until(Temporal endExclusive, TemporalUnit unit)

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


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

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

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

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

// Java program to demonstrate 
// LocalDateTime.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create LocalDateTime objects 
        LocalDateTime l1 
            = LocalDateTime 
                  .parse("2018-12-06T19:21:12"); 
  
        LocalDateTime l2 
            = LocalDateTime 
                  .parse("2018-10-25T23:12:31.123"); 
  
        // apply until method of LocalDateTime class 
        long result 
            = l2.until(l1, 
                       ChronoUnit.MINUTES); 
  
        // print results 
        System.out.println("Result in MINUTES: "
                           + result); 
    } 
}
輸出:
Result in MINUTES: 60248

示例2:

// Java program to demonstrate 
// LocalDateTime.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create LocalDateTime objects 
        LocalDateTime l1 
            = LocalDateTime 
                  .parse("2018-12-06T19:21:12"); 
  
        LocalDateTime l2 
            = LocalDateTime 
                  .parse("2018-10-25T23:12:31.123"); 
  
        // applynedDateTime.parseLocalDateTime class 
        long result 
            = l2.until(l1, 
                       ChronoUnit.MONTHS); 
  
        // print results 
        System.out.println("Result in MONTHS: "
                           + result); 
    } 
}
輸出:
Result in MONTHS: 1

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



相關用法


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