📜  Java中的 YearMonth query() 方法及示例

📅  最后修改于: 2022-05-13 01:55:45.799000             🧑  作者: Mango

Java中的 YearMonth query() 方法及示例

YearMonth类的query()方法,用于使用指定的查询作为参数查询此 YearMonth。作为参数传递的 TemporalQuery 对象定义用于从该 YearMonth 获取结果的逻辑。

句法:

public  R query(TemporalQuery query)

参数:此方法只接受一个参数查询,即要调用的查询。

返回值:该方法返回查询结果,可能返回null。

例外:
此方法引发以下异常:

  • DateTimeException – 如果无法查询。
  • ArithmeticException – 如果发生数字溢出。

下面的程序说明了 query() 方法:
方案一:

// 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: Java Java.time.temporal.TemporalQuery)