java.time.Month.length() 方法示例



说明

java.time.Month.length(boolean leapYear) 方法获取本月天数。

声明

以下是对 java.time.Month.length(boolean leapYear) 方法的声明。

public int length(boolean leapYear)

参数

leapYear - 如果获取闰年长度,则为 true。

返回值

本月天数,从 28 到 31。

示例

下面的示例展示了 java.time.Month.length(boolean leapYear) 方法的使用。

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.FEBRUARY;
      System.out.println(month.length(false));  
   }
}

我们编译并运行以上程序,这会产生以下结果 -

28
广告