java.time.YearMonth isLeapYear()方法

java.time.Year.isLeapYear()方法检查年份是否为闰年。

1 语法

public boolean isLeapYear()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.YearMonth isLeapYear()方法
 */
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

 

热门文章

优秀文章