根據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