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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。