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


Java HijrahDate getEra()用法及代碼示例


java.time.chrono.HijrahDate類的getEra()方法用於檢索與此hijrah日期相關的時代。語法:

public HijrahEra getEra()

參數:此方法不接受任何參數。
返回值:此方法返回此回曆日期的時代。

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


Java

// Java program to demonstrate
// getEra() 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 chronology of this date
            // by using getChronology() method
            HijrahEra crono = hidate.getEra();
 
            // display the result
            System.out.println("HijrahEra:"
                               + crono);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown:"
                               + e);
        }
    }
}
輸出
HijrahEra:AH

範例2:

Java

// Java program to demonstrate
// getEra() 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.of(1444, 04, 24);
 
      // getting chronology of this date
      // by using getChronology() method
      HijrahEra crono = hidate.getEra();
 
      // display the result
      System.out.println("HijrahEra:"
                         + crono);
    } catch (DateTimeException e) {
      System.out.println("passed parameter can"
                         + " not form a date");
      System.out.println("Exception thrown:" + e);
    }
  }
}
輸出
HijrahEra:AH

參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#getEra-



相關用法


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