当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。