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


Java ZoneOffset ofHours(int)用法及代碼示例


使用java.time包中ZoneOffset類的ofHours(int)方法,以傳遞的小時數偏移量作為參數來獲取ZoneOffset的實例。此方法將小時數作為int形式的參數並將其轉換為ZoneOffset。支持的最大範圍是從+18:00到-18:00(含)。

用法:

public static ZoneOffset ofHours(int hours)

參數:此方法接受參數hours,該參數的int值將轉換為ZoneOffset實例。


返回值:此方法返回從指定時間開始解析的ZoneOffset實例。

異常:如果小時數無效,則此方法引發DateTimeException。

以下示例說明了ZoneOffset.ofHours()方法:

示例1:

// Java code to illustrate ofHours() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Get the hours 
        int hours = 10; 
  
        // ZoneOffset using ofHours() method 
        ZoneOffset zoneOffset 
            = ZoneOffset.ofHours(hours); 
  
        System.out.println(zoneOffset); 
    } 
}
輸出:
+10:00

示例2:演示DateTimeException

// Java code to illustrate ofHours() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Get the invalid hours 
        int hours = 20; 
  
        try { 
            // ZoneOffset using ofHours() method 
            ZoneOffset zoneOffset 
                = ZoneOffset.ofHours(hours); 
        } 
  
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
java.time.DateTimeException: Zone offset hours not in valid range: value 20 is not in the range -18 to 18

參考: Oracle Doc



相關用法


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