Wednesday, October 8, 2025
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
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS