El método getValue() de la clase Year en Java se usa para obtener el valor integral del objeto Year actual.
Sintaxis :
public int getValue()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto : Devuelve un número entero que indica el valor del objeto del año actual.
Los siguientes programas ilustran el método getValue() de Year en Java:
Programa 1 :
// Program to illustrate the getvalue() method import java.util.*; import java.time.*; import java.time.format.DateTimeFormatter; public class GfG { public static void main(String[] args) { // Creates a Year object Year firstYear = Year.of(1997); // Print the value of the current year // using getValue() method System.out.println(firstYear.getValue()); } }
Producción:
1997
Programa 2 :
// Program to illustrate the getvalue() method import java.util.*; import java.time.*; import java.time.format.DateTimeFormatter; public class GfG { public static void main(String[] args) { // Creates a Year object Year firstYear = Year.of(2018); // Print the value of the current year // using getValue() method System.out.println(firstYear.getValue()); } }
Producción:
2018
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#getValue–