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


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