El método getYear() de la clase YearMonth en Java se usa para obtener el valor del campo Year de esta instancia YearMonth con la que se usa. Devuelve el valor del campo del año como un número entero de MIN_YEAR a MAX_YEAR.
Sintaxis :
public int getYear()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto: Devuelve el valor del campo del año como un número entero de MIN_YEAR a MAX_YEAR.
Los siguientes programas ilustran el método getYear() de YearMonth en Java:
Programa 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()); } }
Producción:
2017
Programa 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()); } }
Producción:
2018
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getYear–