Instant類的get()方法有助於從該瞬時獲取作為參數傳遞的指定字段的整數值。此方法在瞬間查詢該字段的值,並且返回的值將始終在該字段的值的有效範圍內。當不支持該字段並且方法無法返回int值時,將引發異常。
用法:
public int get(TemporalField field)
參數:此方法接受一個參數字段,該字段是要獲取的字段。
返回值:此方法返回該字段的int值。
異常:此方法引發以下異常:
- DateTimeException:如果無法獲取該字段的值,或者該值超出該字段的有效值範圍。
- UnsupportedTemporalTypeException:如果不支持該字段或值的範圍超過int。
- ArithmeticException:如果發生數字溢出。
以下示例程序旨在說明get()方法:
示例1:
// Java program to demonstrate
// Instant.get() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// get Mili of Second value from instant
// using get method
int secondvalue
= instant.get(ChronoField.MILLI_OF_SECOND);
// print result
System.out.println("MiliSecond Field: "
+ secondvalue);
}
}
輸出:
MiliSecond Field: 630
示例2:
// Java program to demonstrate
// Instant.get() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T01:34:50.93Z");
// get Nano of Second value from instant
// using get method
int secondvalue
= instant.get(ChronoField.NANO_OF_SECOND);
// print result
System.out.println("Nano of Second: "
+ secondvalue);
}
}
輸出:
Nano of Second: 930000000
示例3:獲取UnsupportedTemporalTypeException
// Java program to demonstrate
// Instant.get() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T01:34:50.93Z");
// try to find era using ChronoField
try {
int secondvalue
= instant.get(ChronoField.ERA);
}
catch (Exception e) {
// print exception
System.out.println("Exception: " + e);
}
}
}
輸出:
Exception: java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: Era
參考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#get(java.time.temporal.TemporalField)
相關用法
- Java Instant with()用法及代碼示例
- Java Instant until()用法及代碼示例
- Java Instant plus()用法及代碼示例
- Java Instant from()用法及代碼示例
- Java Instant now()用法及代碼示例
- Java Instant atOffset()用法及代碼示例
- Java Instant plusNanos()用法及代碼示例
- Java Instant plusMillis()用法及代碼示例
- Java Instant getLong()用法及代碼示例
- Java 8 Clock instant()用法及代碼示例
- Java Instant getEpochSecond()用法及代碼示例
- Java Instant minusMillis()用法及代碼示例
- Java Instant toString()用法及代碼示例
- Java Instant range()用法及代碼示例
- Java Instant hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant get() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。