Java中的 OffsetDateTime query() 方法及示例
OffsetDateTime类的query()方法,用于使用指定的查询作为参数查询此 OffsetDateTime。作为参数传递的 TemporalQuery 对象定义用于从此 OffsetDateTime 获取结果的逻辑。
句法:
public R query(TemporalQuery query)
参数:此方法只接受一个参数查询,即要调用的查询。
返回值:该方法返回查询结果,可能返回null。
异常:此方法抛出以下异常:
- DateTimeException – 如果无法查询。
- ArithmeticException – 如果发生数字溢出。
下面的程序说明了 query() 方法:
方案一:
// Java program to demonstrate
// OffsetDateTime.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create OffsetDateTime object
OffsetDateTime olt
= OffsetDateTime.parse(
"2018-12-12T13:30:30+05:00");
// apply query method of OffsetDateTime class
String value
= olt.query(
TemporalQueries.precision())
.toString();
// print the result
System.out.println("Precision value"
+ " for OffsetDateTime is "
+ value);
}
}
输出:
Precision value for OffsetDateTime is Nanos
方案二:
// Java program to demonstrate
// OffsetDateTime.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create OffsetDateTime object
OffsetDateTime olt
= OffsetDateTime.parse(
"2018-12-12T13:30:30+05:00");
// apply query method of
// OffsetDateTime class
// print the result
System.out.println("offset value "
+ "for OffsetDateTime is "
+ olt.query(
TemporalQueries.offset()));
}
}
输出:
offset value for OffsetDateTime is +05:00
参考资料: https: Java Java.time.temporal.TemporalQuery)