Java中的 LocalDate getEra() 方法及示例
Java中 LocalDate 类的 getEra() 方法获取该日期适用的时代。
语法:
public Era getEra()
参数:此方法不接受任何参数。
返回值:该函数返回适用于该日期的 IsoChronology 时代常数,而不是 null。
下面的程序说明了Java中 LocalDate 的getEra()方法:
程序 1 :
// Program to illustrate the getEra() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt = LocalDate.parse("2018-11-27");
// Prints the day number
System.out.println(dt.getEra());
}
}
输出:
CE
方案二:
// Program to illustrate the getEra() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
LocalDate dt = LocalDate.parse("2018-01-21");
// Prints the day number
System.out.println(dt.getEra());
}
}
输出:
CE
参考:https: Java/time/LocalDate.html#getEra()