java.time.YearMonth.lengthOfYear() Method Example



Description

The java.time.YearMonth.lengthOfYear() method returns the length of the year.

Declaration

Following is the declaration for java.time.YearMonth.lengthOfYear() method.

public int lengthOfYear()

Return Value

366 if the year is leap, 365 otherwise.

Example

The following example shows the usage of java.time.YearMonth.lengthOfYear() method.

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {
 
      YearMonth date = YearMonth.of(2016,12);
      System.out.println(date.lengthOfYear());  
   }
}

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

366
Advertisements