java.time.YearMonth.isLeap() 方法

描述

java.time.YearMonth.isLeap() 方法根据 ISO 预测日历系统规则检查年份是否为闰年。


声明

以下是 java.time.YearMonth.isLeap() 方法的声明。

public static  boolean isLeap(int year)

参数

year − 要检查闰年的年份。


返回值

如果年份是闰年,则为 true,否则为 false。


示例

下面的例子展示了 java.time.YearMonth.isLeapYear() 方法的使用。

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {
      System.out.println(YearMonth.isLeap(2016));  
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

true