El método getDays() de la clase Período en Java se usa para obtener el número de días en este período actual con el que se usa.
Sintaxis:
public int getDays()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: esta función devuelve el número de días en el período dado.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java code to show the function getDays() // to get number of days from given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get number of days of given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getDays()); } // Driver Code public static void main(String[] args) { int year = 8; int months = 5; int days = 25; getNumberOfDays(year, months, days); } }
Producción:
25
Programa 2:
// Java code to show the function getDays() // to get number of days from given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get number of days of given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getDays()); } // Driver Code public static void main(String[] args) { int year = 0; int months = 0; int days = 365; getNumberOfDays(year, months, days); } }
Producción:
365
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#getDays–