Instant类的range()方法有助于获取作为参数的字段传递的有效值范围。此方法返回ValueRange对象,该对象包含字段的最小和最大有效值。此瞬间有助于提高返回范围的准确性。当不支持该字段并且方法无法返回范围值时,将引发异常。
用法:
public ValueRange range(TemporalField field)
参数:此方法接受一个参数字段,该字段是获取值范围的字段。
返回值:此方法返回ValueRange,该值是该字段的有效值范围,而不是null。
异常:此方法引发以下异常:
- DateTimeException:如果无法获得该字段的范围。
- UnsupportedTemporalTypeException:如果不支持该字段。
以下示例程序旨在说明range()方法:
示例1:
// Java program to demonstrate
// Instant.range() method
import java.time.*;
import java.time.temporal.ChronoField;
import java.time.temporal.ValueRange;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-10-28T19:34:50.63Z");
// print Instant
System.out.println("Instant: "
+ instant);
// get range of MILLI_OF_SECOND field
// from instant using range method
ValueRange range
= instant.range(ChronoField.MILLI_OF_SECOND);
// print range of MILLI_OF_SECOND
System.out.println("Range of MILLI_OF_SECOND: "
+ range);
}
}
示例2:
// Java program to demonstrate
// Instant.range() method
import java.time.*;
import java.time.temporal.ChronoField;
import java.time.temporal.ValueRange;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-10-28T19:34:50.63Z");
// print Instant
System.out.println("Instant: "
+ instant);
// get range of NANO_OF_SECOND field
// from instant using range method
ValueRange range
= instant.range(ChronoField.NANO_OF_SECOND);
// print range of NANO_OF_SECOND
System.out.println("Range of NANO_OF_SECOND: "
+ range);
}
}
示例3:获取UnsupportedTemporalTypeException
// Java program to demonstrate
// Instant.range() method
import java.time.*;
import java.time.temporal.ChronoField;
import java.time.temporal.ValueRange;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-10-28T19:34:50.63Z");
// try to find range of era using ChronoField
try {
ValueRange secondvalue
= instant.range(ChronoField.ERA);
}
catch (Exception e) {
// print exception
System.out.println("Exception: " + e);
}
}
}
参考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#range(java.time.temporal.TemporalField)
相关用法
- Java Instant until()用法及代码示例
- Java Instant with()用法及代码示例
- Java Instant plus()用法及代码示例
- Java Instant now()用法及代码示例
- Java Instant from()用法及代码示例
- Java Instant get()用法及代码示例
- Java Instant plusSeconds()用法及代码示例
- Java Instant ofEpochMilli()用法及代码示例
- Java Instant parse()用法及代码示例
- Java Instant isBefore()用法及代码示例
- Java Instant truncatedTo()用法及代码示例
- Java Instant query()用法及代码示例
- Java Instant toString()用法及代码示例
- Java Instant getLong()用法及代码示例
- Java Instant getNano()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant range() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。