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