El método getMonths() de la clase Period en Java se usa para obtener el número de meses en este período actual con el que se usa.
Sintaxis:
public int getMonths()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: esta función devuelve el número de meses en el período dado.
Nota: Hay diferencia entre 12 meses y 1 año.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java code to show the function getMonths() // to get number of months from given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get number of months of given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getMonths()); } // Driver Code public static void main(String[] args) { int year = 0; int months = 10; int days = 365; getNumberOfDays(year, months, days); } }
Producción:
10
Programa 2 : Esto no convertirá 13 meses a año.
// Java code to show the function getMonths() // to get number of months from given period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodDemo { // Function to get number of months of given period static void getNumberOfDays(int year, int months, int days) { Period period = Period.of(year, months, days); System.out.println(period.getMonths()); } // Driver Code public static void main(String[] args) { int year = 1; int months = 13; int days = 36; getNumberOfDays(year, months, days); } }
Producción:
13