📌  相关文章
📜  带有示例的Java中的 HijrahChronology getCalendarType() 方法

📅  最后修改于: 2022-05-13 01:54:29.186000             🧑  作者: Mango

带有示例的Java中的 HijrahChronology getCalendarType() 方法

Java.time.chrono.HijrahChronology类的getCalendarType ()方法用于检索该hijrah 年表系统下的日历类型。

句法:

public String getCalendarType()

参数:此方法不接受任何参数作为参数。
返回值:此方法返回该回历年代系统下的日历类型
以下是说明getCalendarType()方法的示例:
示例 1:

Java
// 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 Calendar
        // by using getCalendarType() method
        String era = crono.getCalendarType();
 
        // display the result
        System.out.println("Type of Calendar : "
                           + era);
    }
}


Java
// 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 Calendar
        // by using getCalendarType() method
        String era = crono.getCalendarType();
 
        // display the result
        System.out.println("Type of Calendar : "
                           + era);
    }
}


输出
Type of Calendar : islamic-umalqura

示例 2:

Java

// 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 Calendar
        // by using getCalendarType() method
        String era = crono.getCalendarType();
 
        // display the result
        System.out.println("Type of Calendar : "
                           + era);
    }
}
输出
Type of Calendar : islamic-umalqura

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