当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Calendar getCalendarType()用法及代码示例


java.util.Calendar 类的 getAvailableCalendarTypes() 方法返回一个 Set,其中包含 java Runtime Environment 支持的所有可用日历类型的字符串集。它返回日历类型或日历类名。

用法

public String getCalendarType()

参数

没有参数传递给这个方法。

返回

返回日历类型或该日历类型的类名。

抛出

不抛出任何异常。

例子1

import java.util.Calendar;
public class JavaCalendargetCalendarTypeExample1 {
public static void main(String[] args) {
 // creating a calendar named  as cal1
Calendar calinstance = Calendar.getInstance();
//  Print the calendar type of calinstance instance of calendar class
  System.out.println("Type of Calendar is " +
  calinstance.getCalendarType());
     }
}

输出:

Type of Calendar is Gregory

例子2

import java.util.GregorianCalendar;
public class JavaCalendargetCalendarTypeExample2  extends GregorianCalendar{
   //extending GregorianClass 
public static void main(String[] args) {
     // creating an instance of type GregorianCalendar
    GregorianCalendar calinstance = (GregorianCalendar)     GregorianCalendar.getInstance();
    //  getting the Calendar type using getCalendarType method.
    System.out.println("Type of Calendar is:" +
                        calinstance.getCalendarType());   
}
}

输出:

Type of Calendar is:gregory



相关用法


注:本文由纯净天空筛选整理自 Java Calendar getCalendarType() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。