Java 中的 LocalDate getEra()方法,带示例
原文:https://www . geesforgeks . org/local date-getera-method-in-Java-with-examples/
Java 中 LocalDate 类的 getEra()方法得到在这个日期适用的纪元。
语法 :
public Era getEra()
参数:该方法不接受任何参数。
返回值:该函数返回该日期适用的等时纪元常数,不为空。
下面的程序说明了 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://docs . Oracle . com/javase/10/docs/API/Java/time/local date . html # getEra()
版权属于:月萌API www.moonapi.com,转载请注明出处