java.time.YearMonth.isLeapYear()方法

2019-10-16 22:35:36

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

宣告

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

public boolean isLeapYear()

返回值

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

範例

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

package com.yiibai;

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