当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。