Open In App

ChronoLocalDate lengthOfYear() method in Java with Examples

Last Updated : 29 Apr, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
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: Java
// 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());
    }
}
Output:
365
Program 2: Java
// 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());
    }
}
Output:
366
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#lengthOfYear--

Similar Reads