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)