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-
相關用法
- Java ThaiBuddhistDate from()用法及代碼示例
- Java ThaiBuddhistDate getEra()用法及代碼示例
- Java ThaiBuddhistDate hashCode()用法及代碼示例
- Java ThaiBuddhistDate getLong()用法及代碼示例
- Java ThaiBuddhistDate toString()用法及代碼示例
- Java ThaiBuddhistDate range()用法及代碼示例
- Java ThaiBuddhistDate now(Clock)用法及代碼示例
- Java ThaiBuddhistDate lengthOfMonth()用法及代碼示例
- Java ThaiBuddhistDate equals()用法及代碼示例
- Java ThaiBuddhistDate atTime()用法及代碼示例
- Java ThaiBuddhistDate getChronology()用法及代碼示例
- Java ThaiBuddhistDate now(ZoneId)用法及代碼示例
- Java ThaiBuddhistDate minus(long, TemporalUnit)用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java lang.Long.builtcount()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistDate of() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。