Java中的LocalTime query()方法

可以根据需要使用Java中LocalTime类中的查询方法查询LocalTime对象。此方法需要单个参数,即要调用的查询,并且它返回查询的结果。

演示此的程序如下所示-

示例

import java.time.*;
import java.time.temporal.*;
public class Demo {
   public static void main(String[] args) {
      LocalTime lt = LocalTime.parse("23:15:30");
      System.out.println("The LocalTime is: " + lt);
      String precision = lt.query(TemporalQueries.precision()).toString();
      System.out.println("The Precision for the LocalTime is: "+ precision);
   }
}

输出结果

The LocalTime is: 23:15:30
The Precision for the LocalTime is: Nanos

现在让我们了解上面的程序。

首先显示LocalTime对象。然后使用该query()方法查询LocalTime对象,并显示查询结果。演示这的代码片段如下-

LocalTime lt = LocalTime.parse("23:15:30");
System.out.println("The LocalTime is: " + lt);
String precision = lt.query(TemporalQueries.precision()).toString();
System.out.println("The Precision for the LocalTime is: "+ precision);