The getYear() method of LocalDate class in Java gets the year field.
Syntax:
public int getYear()
Parameter: This method does not accepts any parameter.
Return Value: The function returns the year, from MIN_YEAR to MAX_YEAR
Below programs illustrate the getYear() method of LocalDate in Java:
Program 1:
| // Program to illustrate the getYear() method importjava.util.*;importjava.time.*; publicclassGfG {    publicstaticvoidmain(String[] args)    {        // Parses the date        LocalDate dt = LocalDate.parse("2018-11-27");         // Prints the day number        System.out.println(dt.getYear());    }} | 
2018
Program 2:
| // Program to illustrate the getYear() method importjava.util.*;importjava.time.*; publicclassGfG {    publicstaticvoidmain(String[] args)    {        // Parses the date        LocalDate dt = LocalDate.parse("2015-11-27");         // Prints the day number        System.out.println(dt.getYear());    }} | 
2015
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getYear()


 
                                    







