java.time.Instant.query(TemporalQuery query)

2019-10-16 22:39:45

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(TemporalQuery query)方法的用法。

package com.yiibai;

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