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


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


YearMonth類的range()方法用於獲取ValueRange對象,該對象是就作為參數傳遞的字段的最小值和最大值而言的字段範圍。該方法僅對YearMonth對象支持的字段返回ValueRange對象。因此,如果此方法不支持該字段,則此方法將引發異常。

用法:

public ValueRange range(TemporalField field)

參數:此方法接受一個參數字段,該字段是查詢範圍的字段。


返回值:此方法返回該字段的有效值範圍。

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

  • DateTimeException-如果無法獲得該字段的範圍。
  • UnsupportedTemporalTypeException-如果不支持該字段。

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

// Java program to demonstrate 
// YearMonth.range() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create YearMonth object 
        YearMonth yearMonth 
            = YearMonth.of(2017, 8); 
  
        // apply range() method of YearMonth class 
        ValueRange result 
            = yearMonth.range(ChronoField.YEAR_OF_ERA); 
  
        // print results 
        System.out.println("Range in YEAR_OF_ERA: "
                           + result); 
    } 
}
輸出:
Range in YEAR_OF_ERA: 1 - 999999999

示例2:

// Java program to demonstrate 
// YearMonth.range() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create YearMonth object 
        YearMonth yearMonth 
            = YearMonth.of(2017, 8); 
  
        // apply range() method of YearMonth class 
        ValueRange result 
            = yearMonth.range(ChronoField.ERA); 
  
        // print results 
        System.out.println("Range in ERA: "
                           + result); 
    } 
}
輸出:
Range in ERA: 0 - 1

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#range(java.time.temporal.TemporalField)



相關用法


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