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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。