java.time.Month.length() Method Example



Description

The java.time.Month.length(boolean leapYear) method gets the length of this month in days.

Declaration

Following is the declaration for java.time.Month.length(boolean leapYear) method.

public int length(boolean leapYear)

Parameters

leapYear − true if the length is required for a leap year.

Return Value

the length of this month in days, from 28 to 31.

Example

The following example shows the usage of java.time.Month.length(boolean leapYear) method.

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));  
   }
}

Let us compile and run the above program, this will produce the following result −

28
Advertisements