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


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


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

用法:

public String getCalendarType()

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


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

下面是说明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 
        // HijrahDate Object 
        HijrahDate hidate 
            = HijrahDate.now(); 
  
        // getting HijrahChronology 
        // used in HijrahDate 
        HijrahChronology 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:islamic-umalqura

范例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 
        // HijrahDate Object 
        HijrahDate hidate 
            = HijrahDate.now( 
                Clock.systemDefaultZone()); 
  
        // getting HijrahChronology 
        // used in HijrahDate 
        HijrahChronology 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:islamic-umalqura

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



相关用法


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