Java ChronoLocalDate isLeapYear()方法及示例
Java中 ChronoLocalDate 接口的 isLeapYear() 方法检查该年是否为闰年。
语法:
public boolean isLeapYear()
参数 :该方法不接受参数。
返回值 :如果该年是闰年,该函数返回 真 ,否则返回 假 。
以下程序说明了Java中ChronoLocalDate的 isLeapYear() 方法。
程序1 :
// Program to illustrate the isLeapYear() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Checks
System.out.println(dt1.isLeapYear());
}
}
输出。
false
程序2 :
// Program to illustrate the isLeapYear() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2012-11-27");
// Checks
System.out.println(dt1.isLeapYear());
}
}
输出。
true
参考资料 : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#isLeapYear-