java.time.chrono.ThaiBuddhistChronology類的date()方法用於根據ThaiBuddhist日曆係統獲取給定年,月和日的本地日期。
用法:
public ThaiBuddhistDate date(int prolepticYear, int month, int dayOfMonth)
參數:此方法采用以下參數作為參數。
- prolepticYear:ThaiBuddhist的Year字段的整數整數年份
- month:ThaiBuddhist的month字段的整數month
- day:ThaiBuddhist的日字段的整數天
返回值:此方法根據給定年,月和日的泰國佛教日曆係統返回ThaiBuddhistDate。
異常:如果日,月和年的給定字段無法形成結構化日期,則此方法將引發DateTimeException。
下麵的示例說明了date()方法:
範例1:
// Java program to demonstrate
// date() 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 lodate
= ThaiBuddhistDate.now();
// getting ThaiBuddhistChronology
// used in ThaiBuddhistDate
ThaiBuddhistChronology crono
= lodate.getChronology();
// getting ThaiBuddhistDate for the
// given date, month and year field
// by using date() mehtod
ThaiBuddhistDate date
= crono.date(2018, 05, 24);
// display the result
System.out.println(
"ThaiBuddhistDate is:"
+ date);
}
catch (DateTimeException e) {
System.out.println("passed paramter can "
+ "not form a date");
System.out.println("Exception thrown:" + e);
}
}
}
輸出:
ThaiBuddhistDate is:ThaiBuddhist BE 2018-05-24
範例2:
// Java program to demonstrate
// date() 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 lodate
= ThaiBuddhistDate.now();
// getting ThaiBuddhistChronology
// used in ThaiBuddhistDate
ThaiBuddhistChronology crono
= lodate.getChronology();
// getting ThaiBuddhistDate for the
// given date, month and year field
// by using date() mehtod
ThaiBuddhistDate date
= crono.date(2018, 05, -24);
// display the result
System.out.println(
"ThaiBuddhistDate is:"
+ date);
}
catch (DateTimeException e) {
System.out.println("passed paramter can "
+ "not form a date");
System.out.println("Exception thrown:" + e);
}
}
}
輸出:
passed paramter can not form a date Exception thrown: java.time.DateTimeException: Invalid value for DayOfMonth (valid values 1 - 28/31):-24
相關用法
- Java Java lang.Long.builtcount()用法及代碼示例
- Java Java lang.Long.reverse()用法及代碼示例
- Java Java.util.Collections.rotate()用法及代碼示例
- Java Java lang.Long.byteValue()用法及代碼示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代碼示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代碼示例
- Java Java lang.Long.highestOneBit()用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java lang.Long.lowestOneBit()用法及代碼示例
- Java Java.lang.string.replace()用法及代碼示例
- Java Java.math.BigInteger.modInverse()用法及代碼示例
- Java Java.util.ArrayList.addall()用法及代碼示例
- Java Java.math.BigInteger.probablePrime()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistChronology date(int, int, int) method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。