Java YearMonth query()方法及示例
YearMonth 类的 query() 方法用于使用指定的查询作为参数来查询这个YearMonth。作为参数传递的TemporalQuery对象定义了用于从这个YearMonth获得结果的逻辑。
语法
public <R> R query(TemporalQuery<R> query)
参数: 该方法只接受一个参数 query ,它是要调用的查询。
返回值: 该方法返回查询结果,可能返回空值。
异常:
该方法抛出以下异常。
- DateTimeException – 如果无法查询。
- ArithmeticException – 如果发生数字溢出。
以下程序说明了query()方法:
程序1 :
// Java program to demonstrate
// YearMonth.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth object
YearMonth yM = YearMonth.of(2020, 12);
// apply query method of YearMonth class
String value = yM.query(TemporalQueries
.precision())
.toString();
// print the result
System.out.println("Precision value"
+ " for YearMonth is "
+ value);
}
}
输出。
Precision value for YearMonth is Months
程序2: 显示如果查询没有找到需要的对象,则返回null。
// Java program to demonstrate
// YearMonth.query() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth object
YearMonth YM = YearMonth.of(2019, 3);
// apply query method of YearMonth class
// print the result
System.out.println("Zone value for YearMonth is "
+ YM.query(
TemporalQueries.offset()));
}
}
输出。
Zone value for YearMonth is null
参考资料: https: //docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#query(java.time.temporal.TemporalQuery)