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


Java HijrahChronology eraOf()用法及代碼示例


java.time.chrono.HijrahChronology類的eraOf()方法用於通過使用數值1來檢索Hizrah時代,因為HijrahCronology僅包含一個HijrahEra。

用法:

public HijrahEra eraOf(int eraValue)

參數:此方法將eraValue整數作為要為其生成HijrahEra的參數。


返回值:此方法通過使用數值1返回Hizrah Era,因為HijrahCronology僅包含一個HijrahEra。

下麵是說明eraOf()方法的示例:

範例1:

// Java program to demonstrate 
// eraOf() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // creating and initializing 
            // HijrahDate Object 
            HijrahDate hidate = HijrahDate.now(); 
  
            // getting HijrahChronology 
            // used in HijrahDate 
            HijrahChronology crono 
                = hidate.getChronology(); 
  
            // getting HijrahEra for the 
            // given integer value 
            // by using eraOf() method 
            HijrahEra era = crono.eraOf(1); 
  
            // display the result 
            System.out.println("HijrahEra is:"
                               + era); 
        } 
        catch (DateTimeException e) { 
            System.out.println("HijrahEra is invalid"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
HijrahEra is:AH

範例2:

// Java program to demonstrate 
// eraOf() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // creating and initializing 
            // HijrahDate Object 
            HijrahDate hidate = HijrahDate.now(); 
  
            // getting HijrahChronology 
            // used in HijrahDate 
            HijrahChronology crono 
                = hidate.getChronology(); 
  
            // getting HijrahEra for the 
            // given integer value 
            // by using eraOf() method 
            HijrahEra era = crono.eraOf(0); 
  
            // display the result 
            System.out.println("HijrahEra is:"
                               + era); 
        } 
        catch (DateTimeException e) { 
            System.out.println("HijrahEra is invalid"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
HijrahEra is invalid
Exception thrown:java.time.DateTimeException:invalid Hijrah era

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#eraOf-int-



相關用法


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