java.time.Instant.query() 方法示例



说明

java.time.Instant.query(TemporalQuery query) 方法使用指定的查询查询此即时。

声明

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

public  R query(TemporalQuery query)

参数

query - 要调用的查询,不为 null。

返回的值

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

异常

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

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

示例

以下示例显示了如何使用 java.time.Instant.query(TemporalQueryquery) 方法。

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
广告