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



描述

java.time.Month.maxLength() 方法获取当月的最大长度(以天为单位)。

声明

下面是 java.time.Month.maxLength() 方法的声明。

public int maxLength()

返回值

这个月以天为单位的最大长度,范围从 29 到 31。

示例

以下示例展示了 java.time.Month.maxLength() 方法的用法。

package com.tutorialspoint;

import java.time.Month;

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

让我们编译并运行上面的程序,它将产生以下结果:

29
广告