Thursday, June 27, 2024
HomeLanguagesJavaYearMonth lengthOfMonth method() in Java

YearMonth lengthOfMonth method() in Java

The lengthOfMonth() method of YearMonth class in Java is used to return the length of month of this year-month object’s value in number of days. The value of length of month is in the range of 1 to 31. This method also take cares of leap years.

Syntax:

public int lengthOfMonth()

Parameter: This method does not accepts any parameter.

Return Value: It returns an integer value denoting the length of month in number of days.

Below programs illustrate the lengthOfMonth() method of YearMonth in Java:

Program 1:




// Program to illustrate the lengthOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create YearMonth object
        YearMonth yearMonth = YearMonth.of(2016, 2);
  
        // Print the length of month in Number
        // of days, 29 in this case as 2016 is
        // a Leap Year
        System.out.println(yearMonth.lengthOfMonth());
    }
}


Output:

29

Program 2:




// Program to illustrate the lengthOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create YearMonth object
        YearMonth yearMonth = YearMonth.of(1990, 2);
  
        // Print the length of month in Number
        // of days, 28 in this case as 1990 is
        // not a Leap Year
        System.out.println(yearMonth.lengthOfMonth());
    }
}


Output:

28

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#lengthOfMonth–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments