java.time.Year.isLeap() Method Example



Description

The java.time.Year.isLeap() 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.Year.isLeap() method.

public static  boolean isLeap(int year)

Parameters

year − year to check for leap year.

Return Value

true if the year is leap, false otherwise.

Example

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

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      System.out.println(Year.isLeap(2016));  
   }
}

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

true
Advertisements