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


Java ThaiBuddhistDate getChronology()用法及代码示例


java.time.chrono.ThaiBuddhistDate类的getChronology()方法用于检索该日期所属的ThaiBudhisthist日期的年代。

用法:

public ThaiBuddhistChronology getChronology()

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



返回值:此方法返回此ThaiBuddhist日期的时间顺序。

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

范例1:

// Java program to demonstrate 
// getChronology() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate hidate 
                = ThaiBuddhistDate.now(); 
  
            // Getting the chronology of this date 
            // by using getChronology() method 
            ThaiBuddhistChronology crono 
                = hidate.getChronology(); 
  
            // Display the result 
            System.out.println( 
                "ThaiBuddhistChronology:"
                + crono); 
        } 
        catch (DateTimeException e) { 
            System.out.println( 
                "Passed parameter can"
                + " not form a date"); 
  
            System.out.println( 
                "Exception thrown:" + e); 
        } 
    } 
}
输出:
ThaiBuddhistChronology:ThaiBuddhist

范例2:

// Java program to demonstrate 
// getChronology() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // Creating and initializing 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate hidate 
                = ThaiBuddhistDate.of(2008, 04, 24); 
  
            // Getting chronology of this date 
            // by using getChronology() method 
            ThaiBuddhistChronology crono 
                = hidate.getChronology(); 
  
            // Display the result 
            System.out.println( 
                "ThaiBuddhistChronology:"
                + crono); 
        } 
        catch (DateTimeException e) { 
            System.out.println( 
                "Passed parameter can"
                + " not form a date"); 
            System.out.println( 
                "Exception thrown:" + e); 
        } 
    } 
}
输出:
ThaiBuddhistChronology:ThaiBuddhist

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




相关用法


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