📌  相关文章
📜  Java中的 ThaiBuddhistDate getEra() 方法与示例

📅  最后修改于: 2022-05-13 01:54:57.396000             🧑  作者: Mango

Java中的 ThaiBuddhistDate getEra() 方法与示例

Java.time.chrono.ThaiBuddhistDate类的getEra()方法用于检索与此ThaiBuddhist 日期相关的时代。

句法:

public ThaiBuddhistEra getEra()

参数:此方法不接受任何参数。

返回值:此方法返回此泰国佛教日期的时代。

以下是说明getEra()方法的示例:

示例 1:

// 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
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.now();
  
            // Getting chronology of this date
            // by using getEra() method
            ThaiBuddhistEra crono
                = hidate.getEra();
  
            // Display the result
            System.out.println(
                "ThaiBuddhistEra: "
                + crono);
        }
        catch (DateTimeException e) {
  
            System.out.println(
                "Passed parameter can"
                + " not form a date");
  
            System.out.println(
                "Exception thrown: "
                + e);
        }
    }
}
输出:
ThaiBuddhistEra: BE

示例 2:

// 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
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.of(2008, 04, 24);
  
            // Getting chronology of this date
            // by using getEra() method
            ThaiBuddhistEra crono
                = hidate.getEra();
  
            // Display the result
            System.out.println(
                "ThaiBuddhistEra: "
                + crono);
        }
        catch (DateTimeException e) {
            System.out.println(
                "Passed parameter can"
                + " not form a date");
  
            System.out.println(
                "Exception thrown: "
                + e);
        }
    }
}
输出:
ThaiBuddhistEra: BE

参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ThaiBuddhistDate.html#getEra–