Thursday, June 11, 2026
HomeLanguagesJavaYearMonth getYear() method in Java

YearMonth getYear() method in Java

The getYear() method of YearMonth class in Java is used to get the value of the Year field from this YearMonth instance with which it is used. It returns the value of the year field as an integer from MIN_YEAR to MAX_YEAR.

Syntax:

public int getYear()

Parameter: This method does not accepts any parameter.

Return Value: It returns the value of the year field as an integer from MIN_YEAR to MAX_YEAR.

Below programs illustrate the getYear() method of YearMonth in Java:
Program 1:




// Program to illustrate the getYear() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2017, 8);
  
        // Get the year field
        System.out.println(thisYearMonth.getYear());
    }
}


Output:

2017

Program 2:




// Program to illustrate the getYear() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Create a YearMonth object
        YearMonth thisYearMonth = YearMonth.of(2018, 5);
  
        // Get the year field
        System.out.println(thisYearMonth.getYear());
    }
}


Output:

2018

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getYear–

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS