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


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


java.time.chrono.JapaneseChronology类的getCalendarType()方法用于检索此日语时间系统下的日历类型。

用法:

public String getCalendarType()

参数:此方法不接受任何参数作为参数。



返回值:此方法返回此日本时间系统下的日历类型。

下面是说明getCalendarType()方法的示例:

范例1:

// Java program to demonstrate 
// getCalendarType() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing 
        // JapaneseDate Object 
        JapaneseDate hidate 
            = JapaneseDate.now(); 
  
        // getting JapaneseChronology 
        // used in JapaneseDate 
        JapaneseChronology crono 
            = hidate.getChronology(); 
  
        // getting type of Calander 
        // by using getCalendarType() method 
        String era = crono.getCalendarType(); 
  
        // display the result 
        System.out.println("Type of Calander:"
                           + era); 
    } 
}
输出:
Type of Calander:japanese

范例2:

// Java program to demonstrate 
// getCalendarType() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        // creating and initializing 
        // JapaneseDate Object 
        JapaneseDate hidate 
            = JapaneseDate.now( 
                Clock.systemDefaultZone()); 
  
        // getting JapaneseChronology 
        // used in JapaneseDate 
        JapaneseChronology crono 
            = hidate.getChronology(); 
  
        // getting type of Calander 
        // by using getCalendarType() method 
        String era = crono.getCalendarType(); 
  
        // display the result 
        System.out.println("Type of Calander:"
                           + era); 
    } 
}
输出:
Type of Calander:japanese

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/JapaneseChronology.html#getCalendarType-




相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 JapaneseChronology getCalendarType() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。