ChronoLocalDate lengthOfYear() method in Java with Examples
The lengthOfYear() method of ChronoLocalDate interface in Java returns the length of the year represented by this date.
Syntax:
public int lengthOfYear()
Parameter: This method does not accept parameters.
Return Value: The function returns 366 if the year is leap, 365 otherwise.
Below programs illustrate the lengthOfYear() method of ChronoLocalDate in Java:
Program 1:
// Program to illustrate the lengthOfYear() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDate dt1 = LocalDate.parse( "2018-11-27" ); // Get the length of the year System.out.println(dt1.lengthOfYear()); } } |
365
Program 2:
// Program to illustrate the lengthOfYear() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDate dt1 = LocalDate.parse( "2016-11-27" ); // Get the length of the year System.out.println(dt1.lengthOfYear()); } } |
366
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#lengthOfYear–
Recommended Posts:
- YearMonth lengthOfYear() method in Java with Examples
- LocalDate lengthOfYear() method in Java with Examples
- ChronoLocalDate until(ChronoLocalDate) Method in Java with Examples
- ChronoLocalDate get() method in Java with Examples
- ChronoLocalDate from() method in Java with Examples
- ChronoLocalDate hashCode() method in Java with Examples
- ChronoLocalDate format() method in Java with Examples
- ChronoLocalDate compareTo() method in Java with Examples
- ChronoLocalDate adjustInto() method in Java with Examples
- LocalDate until(ChronoLocalDate) Method in Java with Examples
- ChronoLocalDate toEpochDay() method in Java with Examples
- ChronoLocalDate range() method in Java with Examples
- ChronoLocalDate isAfter() method in Java with Examples
- ChronoLocalDate lengthOfMonth() method in Java with Examples
- ChronoLocalDate plus(TemporalAmount) method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.