📌  相关文章
📜  Java中的 ThaiBuddhistChronology getCalendarType() 方法与示例(1)

📅  最后修改于: 2023-12-03 15:01:57.559000             🧑  作者: Mango

Java中的 ThaiBuddhistChronology getCalendarType() 方法与示例

在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