當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Month length()用法及代碼示例


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-



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month length() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。