当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。