Saturday, September 6, 2025
HomeLanguagesJavaLocalDate getYear() method in Java with Examples

LocalDate getYear() method in Java with Examples

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
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day number
        System.out.println(dt.getYear());
    }
}


Output:

2018

Program 2:




// Program to illustrate the getYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2015-11-27");
  
        // Prints the day number
        System.out.println(dt.getYear());
    }
}


Output:

2015

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getYear()

RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS