length()方法是Month ENUM的內置方法,用於獲取該月實例中的天數。一個月中的天數可以為28、30或31。.年2月的天數為29。
此方法接受布爾值標誌變量,該變量指示今年是否為is年。
用法:
public int length(boolean leapYear)
參數:此方法接受單個參數jumpYear,該參數指示今年是否為a年。
返回值:此方法返回該月的長度(以天數表示)。
以下示例程序旨在說明上述方法:
程序1:
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.MAY;
// Print the length of this Month
System.out.println(month.length(false));
}
}
輸出:
31
程序2:
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.FEBRUARY;
// Print the length of this Month
System.out.println(month.length(true));
}
}
輸出:
29
參考: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#length-boolean-
相關用法
- Java Year atMonth(Month month)用法及代碼示例
- Java Month of()用法及代碼示例
- Java Month from()用法及代碼示例
- Java Month plus()用法及代碼示例
- Java Month get()用法及代碼示例
- Java Month firstDayOfYear()用法及代碼示例
- Java Month adjustInto()用法及代碼示例
- Java Month minLength()用法及代碼示例
- Java Month maxLength()用法及代碼示例
- Java Month getDisplayName()用法及代碼示例
- Java Month isSupported()用法及代碼示例
- Java Month getValue()用法及代碼示例
- Java Month minus()用法及代碼示例
- Java Month getLong()用法及代碼示例
- Java Month firstMonthOfQuarter()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month length() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。