📌  相关文章
📜  Java中的 IsoChronology getCalendarType() 方法与示例

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

Java中的 IsoChronology getCalendarType() 方法与示例

Java.time.chrono.IsoChronology类的getCalendarType ()方法用于检索该Iso 年代系统下的日历类型。
句法:

public String getCalendarType?()

参数:此方法不接受任何参数作为参数。
返回值:该方法返回该 Iso 年代系统下的日历类型
以下是说明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
        // LocalDate Object
        LocalDate hidate
            = LocalDate.now();
 
        // getting IsoChronology
        // used in LocalDate
        IsoChronology 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
        // LocalDate Object
        LocalDate hidate
            = LocalDate.now(Clock.systemDefaultZone());
 
        // getting IsoChronology
        // used in LocalDate
        IsoChronology 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 : iso8601

示例 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
        // LocalDate Object
        LocalDate hidate
            = LocalDate.now(Clock.systemDefaultZone());
 
        // getting IsoChronology
        // used in LocalDate
        IsoChronology 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 : iso8601

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