Java中的 YearMonth range() 方法及示例
YearMonth类的range()方法用于获取 ValueRange 对象,该对象是作为参数传递的字段的最小值和最大值的字段范围。该方法仅针对 YearMonth 对象支持的那些字段返回 ValueRange 对象。因此,当此方法不支持该字段时,此方法会引发异常。
句法:
public ValueRange range(TemporalField field)
参数:该方法接受一个参数字段,即查询范围的字段。
返回值:该方法返回字段的有效值范围。
异常:此方法抛出以下异常:
- DateTimeException – 如果无法获取该字段的范围。
- UnsupportedTemporalTypeException – 如果不支持该字段。
下面的程序说明了 range() 方法:
方案一:
// 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
方案二:
// 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: Java Java.time.temporal.TemporalField)