java.time.YearMonth.isLeap()方法

2019-10-16 22:35:38

根據ISO日曆系統規則,java.time.YearMonth.isLeap()方法檢查年份是否為閏年。

宣告

以下是java.time.YearMonth.isLeap()方法的宣告。

public static  boolean isLeap(int year)

引數

  • year - 檢查是否為閏年。

返回值

如果年份是閏年則返回為true,否則為false

例子

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

package com.yiibai;

import java.time.YearMonth;

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

編譯並執行上面的程式,這將產生以下結果 -

true