El método getYears() de Period en Java se utiliza para obtener la cantidad de años de este periodo en el que se utiliza.
Nota: 15 meses no es igual a 1 año y 3 meses.
Sintaxis:
public List getYears()
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método devuelve las cantidades de años en este período actual.
Los siguientes programas ilustran el método anterior:
Programa 1 :
// Java code to show the function getYears() // to get the number of years in the period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get the number of years static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getYears()); } // Driver Code public static void main(String[] args) { int year = 12; int months = 3; int days = 31; getNumberOfDays(year, months, days); } }
Producción:
12
Programa 2 :
// Java code to show the function getYears() // to get the number of years in the period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get the number of years static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getYears()); } // Driver Code public static void main(String[] args) { int year = -12; int months = 3; int days = 31; getNumberOfDays(year, months, days); } }
Producción:
-12
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#getYears–