可以根据需要使用Java中MonthDay类中的查询方法查询MonthDay对象。此方法需要单个参数,即要调用的查询,并且它返回查询的结果。
演示此的程序如下所示-
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { MonthDay md = MonthDay.parse("--02-22"); System.out.println("The MonthDay is: " + md); String chronology = md.query(TemporalQueries.chronology()).toString(); System.out.println("The Chronology for the MonthDay is: "+ chronology); } }
输出结果
The MonthDay is: --02-22 The Chronology for the MonthDay is: ISO
现在让我们了解上面的程序。
首先,显示MonthDay对象。然后使用查询方法查询MonthDay对象,并显示查询结果。演示这的代码片段如下-
MonthDay md = MonthDay.parse("--02-22"); System.out.println("The MonthDay is: " + md); String chronology = md.query(TemporalQueries.chronology()).toString(); System.out.println("The Chronology for the MonthDay is: "+ chronology);