java.util.Calendar.getCalendarType() 方法返回此日历的日历类型。日历类型由 Unicode 区域设置数据标记语言 (LDML) 规范定义。
语法
public String getCalendarType()
参数
不需要参数。
语法
import java.util.*;
public class MyClass {
public static void main(String[] args) {
//创建指定日期的Calendar对象
Calendar Cal = Calendar.getInstance();
//打印日历
System.out.println("The Calendar is: " + Cal.getTime());
//获取日历类型
System.out.println("Calendar Type: " + Cal.getCalendarType());
}
}
参数
不需要参数。 code>
返回值
返回 LDML 定义的日历类型或此日历实例的类名称。
异常
NA .
示例:
在下面的示例中,java.util.Calendar.getCalendarType() 方法返回日历类型给定的日历。
The Calendar is: Sat May 08 10:37:59 UTC 2021
Calendar Type: gregory
上述代码的输出将是:
yxjc0trans1