當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java YearMonth isLeapYear()用法及代碼示例


Java中YearMonth類的isLeapYear()方法用於檢查Yearyearth對象中的年份是否為a年。

根據專業日曆係統規則,在以下情況下,一年是is年:

  • 如果可以被4整除。
  • 它不能被100整除,但可以被400整除。

用法


public boolean isLeapYear()

參數:此方法不接受任何參數。

返回值:如果根據周年紀念日曆係統規則,如果Yearyearth對象中的year值是a年,則返回布爾True值,否則返回False。

以下程序說明了Java中YearMonth的isLeapYear()方法:

示例1:

// Program to illustrate the isLeap() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create YearMonth object 
        YearMonth yearMonth = YearMonth.of(2016, 2); 
  
        // Check if year in this YearMonth object's 
        // value is a leap year or not 
        System.out.println(yearMonth.isLeapYear()); 
    } 
}
輸出:
true

示例2:

// Program to illustrate the isLeap() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create YearMonth object 
        YearMonth yearMonth = YearMonth.of(1990, 2); 
  
        // Check if year in this YearMonth object's 
        // value is a leap year or not 
        System.out.println(yearMonth.isLeapYear()); 
    } 
}
輸出:
false

參考: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isLeapYear-



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 YearMonth isLeapYear() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。