Java 中的 LocalDate isLeapYear()方法,带示例

原文:https://www . geesforgeks . org/local date-islapyear-method-in-Java-with-examples/

Java 中 LocalDate 类的 isLeapYear()方法检查年份是否是闰年。

语法 :

public boolean isLeapYear()

参数:此方法不接受参数。

返回值:如果年份是闰年,则函数返回 true,否则返回 false。

下面的程序说明了 Java 中 LocalDate 的islapyear()方法:

程序 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());
    }
}

输出:

false

程序二 :

// 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());
    }
}

输出:

true

参考:https://docs . Oracle . com/javase/10/docs/API/Java/time/local date . html # islapyear()