Instant类的query()方法,用于使用指定的查询作为参数来查询此瞬间。作为参数传递的TemporalQuery对象定义了用于从该瞬间获取结果的逻辑。
用法:
public <R> R query(TemporalQuery<R> query)
参数:此方法仅接受一个要调用的参数查询。
返回值:此方法返回查询结果,可能返回null。
异常:此方法引发以下异常:
- DateTimeException–如果无法查询。
- ArithmeticException–如果发生数字溢出。
以下示例程序旨在说明query()方法:
示例1:
// Java program to demonstrate
// Instant.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create Instant object
Instant instant
= Instant.parse("2018-12-31T10:15:30.00Z");
// apply query method of Instant class
String value
= instant.query(TemporalQueries.precision())
.toString();
// print the result
System.out.println("Precision value for Instant is "
+ value);
}
}
输出:
Precision value for Instant is Nanos
示例2:显示如果查询未找到所需的对象,则返回null。
// Java program to demonstrate
// Instant.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create Instant object
Instant instant
= Instant.parse("2018-12-31T10:15:30.00Z");
// apply query method of Instant class
// print the result
System.out.println("Zone value for Instant is "
+ instant.query(TemporalQueries.offset()));
}
}
输出:
Zone value for Instant is null
相关用法
- Java Instant until()用法及代码示例
- Java Instant now()用法及代码示例
- Java Instant from()用法及代码示例
- Java Instant get()用法及代码示例
- Java Instant with()用法及代码示例
- Java Instant plus()用法及代码示例
- Java Instant getLong()用法及代码示例
- Java Instant compareTo()用法及代码示例
- Java Instant equals()用法及代码示例
- Java Instant ofEpochSecond()用法及代码示例
- Java 8 Clock instant()用法及代码示例
- Java Instant getNano()用法及代码示例
- Java Instant isSupported()用法及代码示例
- Java Instant minusMillis()用法及代码示例
- Java Instant minusSeconds()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant query() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。