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


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


java.time.chrono.ThaiBuddhistDate类的of()方法用于根据ThaiBuddhist日历系统使用传递的多义年份,月份和日期来生成日期。

用法:

public static ThaiBuddhistDate of(int Year,
            int month, int dayOfMonth)

参数:此方法将以下参数作为参数:



  • year:year的整数值,表示ThaiBuddhist日期中的year字段。
  • month:month的整数值,表示ThaiBuddhist日期中的month字段。
  • day:day的整数值,表示ThaiBuddhist日期中的day字段。

返回值:此方法根据泰国佛教历法系统使用传递的通行年份,月份和日期返回日期。

异常:如果传递的参数无法形成日期,则此方法将引发DateTimeException。

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

范例1:

Java

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

ThaiBuddhistDate:ThaiBuddhist BE 1444-04-24

范例2:

Java

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

Passed parameter can not form a date
Exception thrown:java.time.DateTimeException:Invalid value for DayOfMonth (valid values 1 - 28/31):-24

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




相关用法


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