📅  最后修改于: 2023-12-03 15:01:57.559000             🧑  作者: Mango
在Java中,ThaiBuddhistChronology
类提供了获取泰国佛历年代的方法。其中,getCalendarType()
方法可以返回此日历类型的日历字符串表示形式。
public String getCalendarType()
此方法将返回字符串"buddhist"。
以下示例演示了如何使用ThaiBuddhistChronology
类的getCalendarType()
方法:
import java.time.chrono.ThaiBuddhistChronology;
public class Example {
public static void main(String[] args) {
ThaiBuddhistChronology thaiBuddhistChrono = ThaiBuddhistChronology.INSTANCE;
String calendarType = thaiBuddhistChrono.getCalendarType();
System.out.println("日历类型:" + calendarType);
}
}
输出结果:
日历类型:buddhist