java.time.LocalDate.isLeapYear() Method Example



Description

The java.time.LocalDate.isLeapYear() method checks if the year is a leap year, according to the ISO proleptic calendar system rules.

Declaration

Following is the declaration for java.time.LocalDate.isLeapYear() method.

public boolean isLeapYear()

Return Value

true if the year is leap, false otherwise.

Example

The following example shows the usage of java.time.LocalDate.isLeapYear() method.

package com.tutorialspoint;

import java.time.LocalDate;

public class LocalDateDemo {
   public static void main(String[] args) {
	  
      LocalDate date = LocalDate.parse("2020-02-03");
      System.out.println(date.isLeapYear());  
   }
}

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

true
Advertisements