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
相关用法
- Java YearMonth until()用法及代码示例
- Java YearMonth with()用法及代码示例
- Java YearMonth plus(TemporalAmount)用法及代码示例
- Java YearMonth withMonth()用法及代码示例
- Java YearMonth query()用法及代码示例
- Java YearMonth isValidDay()用法及代码示例
- Java YearMonth lengthOfYear()用法及代码示例
- Java YearMonth withYear()用法及代码示例
- Java YearMonth isBefore()用法及代码示例
- Java YearMonth isLeapYear()用法及代码示例
- Java YearMonth isAfter()用法及代码示例
- Java YearMonth isSupported(TemporalField)用法及代码示例
- Java YearMonth minus(TemporalAmount)用法及代码示例
- Java YearMonth plus(long,unit)用法及代码示例
- Java YearMonth isSupported(TemporalUnit)用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 YearMonth range() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。