java.time.YearMonth.isLeapYear() 方法示例



说明

java.time.YearMonth.isLeapYear() 方法根据 ISO 前向历法系统规则检查年份是否是闰年。

声明

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

public boolean isLeapYear()

返回值

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

示例

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

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {
 
      YearMonth date = YearMonth.of(2016,12);
      System.out.println(date.isLeapYear());  
   }
}

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

true
广告