Home  >  Article  >  Java  >  How to check leap year in Java 8?

How to check leap year in Java 8?

WBOY
WBOYforward
2023-05-08 23:16:071339browse

Checking leap year in 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");          
}      
}  
}

The above is the detailed content of How to check leap year in Java 8?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete