Java YearMonth isLeapYear()方法及示例
Java中 YearMonth类 的 isLeapYear() 方法用于检查该YearMonth对象中的年份是否是闰年。
根据闰年系统的规则,一个年份是闰年,如果。
- 如果它能被4整除。
- 它不能被100除以,但可以被400除以。
语法:
public boolean isLeapYear()
参数 :该方法不接受任何参数。
返回值 :如果这个YearMonth对象中的年份值是一个闰年,根据顺时针的日历系统规则,它返回一个 布尔值 True,否则它返回False。
以下程序说明了Java中YearMonth的isLeapYear()方法。
程序1 :
// Program to illustrate the isLeap() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create YearMonth object
YearMonth yearMonth = YearMonth.of(2016, 2);
// Check if year in this YearMonth object's
// value is a leap year or not
System.out.println(yearMonth.isLeapYear());
}
}
输出。
true
程序2 :
// Program to illustrate the isLeap() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create YearMonth object
YearMonth yearMonth = YearMonth.of(1990, 2);
// Check if year in this YearMonth object's
// value is a leap year or not
System.out.println(yearMonth.isLeapYear());
}
}
输出。
false
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isLeapYear-