Java 中的 LocalDate 查询()方法,示例
原文:https://www . geesforgeks . org/local date-query-method-in-Java-with-examples/
query() 一个 LocalDate 类的方法,用于使用指定的查询作为参数查询该 LocalDate。作为参数传递的临时查询对象定义了用于从该本地日期获取结果的逻辑。
语法:
public <R> R query(TemporalQuery<R> query)
参数:该方法只接受一个参数查询,即要调用的查询。
返回值:该方法返回查询结果,可能返回 null。
异常:该方法抛出以下异常:
- 日期时间异常–如果无法查询。
- 算术异常–如果出现数值溢出。
下面的程序说明了 query()方法:
程序 1:
// Java program to demonstrate
// LocalDate.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create LocalDate object
LocalDate ld = LocalDate.parse("2018-12-31");
// apply query method of LocalDate class
String value
= ld.query(TemporalQueries.precision())
.toString();
// print the result
System.out.println("Precision value for LocalDate is "
+ value);
}
}
Output:
Precision value for LocalDate is Days
程序 2: 显示如果查询没有找到所需的对象,则返回空值。
// Java program to demonstrate
// LocalDate.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create LocalDate object
LocalDate ld = LocalDate.parse("2018-12-31");
// apply query method of LocalDate class
// print the result
System.out.println("Zone value for LocalDate is "
+ ld.query(
TemporalQueries.offset()));
}
}
Output:
Zone value for LocalDate is null
版权属于:月萌API www.moonapi.com,转载请注明出处