在Java 8中檢查閏年
package com.shxt.demo02; import java.time.LocalDate; public class Demo14 { public static void main(String[] args) { LocalDate today = LocalDate.now(); if(today.isLeapYear()){ System.out.println("This year is Leap year"); }else { System.out.println("2018 is not a Leap year"); } } }
以上是在Java 8中如何進行閏年的檢查?的詳細內容。更多資訊請關注PHP中文網其他相關文章!