當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java ZonedDateTime query()用法及代碼示例


ZonedDateTime類的query()方法用於使用指定的查詢作為參數來查詢此ZonedDateTime。作為參數傳遞的TemporalQuery對象定義了用於從此ZonedDateTime獲取結果的邏輯。

用法:

public <R> R query(TemporalQuery<R> query)

參數:此方法僅接受一個要調用的參數查詢。


返回值:此方法返回查詢結果,可能返回null。

異常:此方法引發以下異常:

  • DateTimeException-如果無法查詢。
  • ArithmeticException-如果發生數字溢出。

以下示例程序旨在說明query()方法:

示例1:

// Java program to demonstrate 
// ZonedDateTime.query() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create ZonedDateTime object 
        ZonedDateTime zlt 
            = ZonedDateTime.parse( 
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]"); 
  
        // apply the query method of ZonedDateTime class 
        String value 
            = zlt.query( 
                     TemporalQueries.precision()) 
                  .toString(); 
  
        // print the result 
        System.out.println("Precision value"
                           + " for ZonedDateTime is "
                           + value); 
    } 
}
輸出:
Precision value for ZonedDateTime is Nanos

示例2:

// Java program to demonstrate 
// ZonedDateTime.query() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create ZonedDateTime object 
        ZonedDateTime zlt 
            = ZonedDateTime.parse( 
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]"); 
  
        // apply query method of ZonedDateTime class 
        // print the result 
        System.out.println("offset value for "
                           + "ZonedDateTime is "
                           + zlt.query( 
                                 TemporalQueries.offset())); 
    } 
}
輸出:
offset value for ZonedDateTime is +02:00

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#query(java.time.temporal.TemporalQuery)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 ZonedDateTime query() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。