Java中的 ThaiBuddhistDate getChronology() 方法与示例
Java.time.chrono.ThaiBuddhistDate类的getChronology()方法用于检索该日期所在的ThaiBuddhist 日期的年表。
句法:
public ThaiBuddhistChronology getChronology()
参数:此方法不接受任何参数。
返回值:此方法返回此 ThaiBuddhist 日期的年表。
以下是说明getChronology()方法的示例:
示例 1:
// Java program to demonstrate
// getChronology() 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 the chronology of this date
// by using getChronology() method
ThaiBuddhistChronology crono
= hidate.getChronology();
// Display the result
System.out.println(
"ThaiBuddhistChronology: "
+ crono);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown: " + e);
}
}
}
输出:
ThaiBuddhistChronology: ThaiBuddhist
示例 2:
// Java program to demonstrate
// getChronology() 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 getChronology() method
ThaiBuddhistChronology crono
= hidate.getChronology();
// Display the result
System.out.println(
"ThaiBuddhistChronology: "
+ crono);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown: " + e);
}
}
}
输出:
ThaiBuddhistChronology: ThaiBuddhist
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ThaiBuddhistDate.html#getChronology–