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


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


Java中的LocalDate類的isLeapYear()方法檢查年份是否為leap年。

用法

public boolean isLeapYear()

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


返回值:如果年份是leap年,則該函數返回true,否則返回false。

以下示例程序旨在說明Java中LocalDate的isLeapYear()方法:

程序1

// Program to illustrate the isLeapYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the first date 
        LocalDate dt1 = LocalDate.parse("2018-11-27"); 
  
        // Checks 
        System.out.println(dt1.isLeapYear()); 
    } 
}
輸出:
false

程序2

// Program to illustrate the isLeapYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the first date 
        LocalDate dt1 = LocalDate.parse("2012-11-27"); 
  
        // Checks 
        System.out.println(dt1.isLeapYear()); 
    } 
}
輸出:
true

參考: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#isLeapYear()



相關用法


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