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



描述

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

声明

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

public static  boolean isLeap(int 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
广告