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


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


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

用法:

public long until(Temporal endExclusive, TemporalUnit unit)

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


返回值:此方法返回今年YearMonth和結束YearMonth之間的時間量。

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

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

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

// Java program to demonstrate 
// YearMonth.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create YearMonth objects 
        YearMonth y1 = YearMonth.of(2018, 12); 
        YearMonth y2 = YearMonth.of(2015, 10); 
  
        // apply until the method of YearMonth class 
        long result 
            = y2.until(y1, 
                       ChronoUnit.YEARS); 
  
        // print results 
        System.out.println("Result in YEARS: "
                           + result); 
    } 
}
輸出:
Result in YEARS: 3

示例2:

// Java program to demonstrate 
// YearMonth.until() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create YearMonth objects 
        YearMonth y1 = YearMonth.of(2018, 12); 
        YearMonth y2 = YearMonth.of(2015, 10); 
  
        // apply until the method of YearMonth class 
        long result 
            = y1.until(y2, 
                       ChronoUnit.MONTHS); 
  
        // print results 
        System.out.println("Result in MONTHS: "
                           + result); 
    } 
}
輸出:
Result in MONTHS: -38

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



相關用法


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