java.time.Instant.query() 方法

描述

java.time.Instant.query(TemporalQuery query) 方法使用指定的查询查询这个瞬间。


声明

以下是 java.time.Instant.query(TemporalQuery query) 方法的声明。

public  R query(TemporalQuery query)

参数

query − 要调用的查询,不为空。


返回值

查询结果,可能返回null(由查询定义)。


异常

  • DateTimeException − 如果无法查询(由查询定义)。

  • ArithmeticException − 如果发生数字溢出(由查询定义)。


示例

下面的例子展示了 java.time.Instant.query(TemporalQuery query) 方法的使用。

package com.tutorialspoint;

import java.time.Instant;
import java.time.temporal.TemporalQueries;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
      System.out.printf("Instant precision is %s%n",
         instant.query(TemporalQueries.precision()));
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Instant precision is Nanos