java.time.chrono.ThaiBuddhistDate類的lengthOfMonth()方法用於獲取由特定ThaiBuddhist日期表示的月份中出現的天數。
用法:
public int lengthOfMonth()
參數:此方法不接受任何參數作為參數。
返回值:此方法返回以特定ThaiBuddhist日期表示的月份中出現的天數。
下麵是說明lengthOfMonth()方法的示例:
範例1:
// Java program to demonstrate
// lengthOfMonth() 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
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now();
// Getting length of a month
// by using lengthOfMonth() method
int length
= hidate.lengthOfMonth();
// Display the result
System.out.println(
"Number of day present:"
+ length);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
Number of day present:31
範例2:
// Java program to demonstrate
// lengthOfMonth() 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
ThaiBuddhistDate hidate
= ThaiBuddhistDate.of(2020, 06, 23);
// Getting length of a month
// by using lengthOfMonth() method
int length
= hidate.lengthOfMonth();
// Display the result
System.out.println(
"Number of day present:"
+ length);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
Number of day present:30
參考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#lengthOfMonth-
相關用法
- Java MinguoDate lengthOfMonth()用法及代碼示例
- Java HijrahDate lengthOfMonth()用法及代碼示例
- Java ChronoLocalDate lengthOfMonth()用法及代碼示例
- Java LocalDate lengthOfMonth()用法及代碼示例
- Java JapaneseDate lengthOfMonth()用法及代碼示例
- Java ThaiBuddhistDate of()用法及代碼示例
- Java ThaiBuddhistDate from()用法及代碼示例
- Java ThaiBuddhistDate hashCode()用法及代碼示例
- Java ThaiBuddhistDate getEra()用法及代碼示例
- Java ThaiBuddhistDate equals()用法及代碼示例
- Java ThaiBuddhistDate getChronology()用法及代碼示例
- Java ThaiBuddhistDate getLong()用法及代碼示例
- Java ThaiBuddhistDate atTime()用法及代碼示例
- Java ThaiBuddhistDate now(Clock)用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistDate lengthOfMonth() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。