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


Java ZoneOffset getLong(TemporalField)用法及代码示例


java.time包中ZoneOffset类的getLong(TemporalField)方法用于从此ZoneOffset实例获取指定TemporalField的值。此方法将TemporalField作为参数,并返回此字段的长整型值。

用法:

public long getLong(TemporalField temporalField)

参数:此方法接受接受此ZoneOffset实例所需的参数temporalField。


返回值:此方法返回一个long值,该值是作为参数传递给此ZoneOffset实例的temporalField的字段值。

异常:该方法抛出:

  • DateTimeException:如果无法获得该字段的值,或者该值超出该字段的有效值范围
  • UnsupportedTemporalTypeException:如果不支持该字段或值的范围超过int
  • ArithmeticException:如果发生数字溢出

以下示例说明了ZoneOffset.getLong()方法:

示例1:

// Java code to illustrate getLong() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Get the ZoneOffset instance 
        ZoneOffset zoneOffset 
            = ZoneOffset.of("+05:30"); 
        System.out.println("ZoneOffset: "
                           + zoneOffset); 
  
        // Using getLong() method 
        System.out.println("Second value: "
                           + zoneOffset.getLong(ChronoField.OFFSET_SECONDS)); 
    } 
}
输出:
ZoneOffset: +05:30
Second value: 19800

示例2:显示DateTimeException

// Java code to illustrate getLong() method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        try { 
            // Get the ZoneOffset instance 
            ZoneOffset zoneOffset 
                = ZoneOffset.ofHours(25); 
            System.out.println("ZoneOffset: "
                               + zoneOffset); 
  
            // Using getLong() method 
            System.out.println("Second value: "
                               + zoneOffset.getLong(ChronoField.OFFSET_SECONDS)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.DateTimeException: Zone offset hours not in valid range: value 25 is not in the range -18 to 18

参考: Oracle Doc



相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 ZoneOffset getLong(TemporalField) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。