Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

LocalDate isLeapYear() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The isLeapYear() method of LocalDate class in Java checks if the year is leap year or not.

Syntax:

public boolean isLeapYear()

Parameter: This method does not accept parameters.

Return Value: The function returns true if the year is leap, false otherwise.

Below programs illustrate the isLeapYear() method of LocalDate in Java:

Program 1:




// Program to illustrate the isLeapYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        LocalDate dt1 = LocalDate.parse("2018-11-27");
  
        // Checks
        System.out.println(dt1.isLeapYear());
    }
}

Output:

false

Program 2:




// Program to illustrate the isLeapYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the first date
        LocalDate dt1 = LocalDate.parse("2012-11-27");
  
        // Checks
        System.out.println(dt1.isLeapYear());
    }
}

Output:

true

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#isLeapYear()


My Personal Notes arrow_drop_up
Last Updated : 29 Nov, 2018
Like Article
Save Article
Similar Reads
Related Tutorials