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()); } } |
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()); } } |
2018
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getYear–