El método lengthOfMonth() de la clase YearMonth en Java se utiliza para devolver la duración del mes del valor de este objeto año-mes en número de días. El valor de la duración del mes está en el rango de 1 a 31. Este método también se ocupa de los años bisiestos.
Sintaxis :
public int lengthOfMonth()
Parámetro : Este método no acepta ningún parámetro.
Valor devuelto : Devuelve un valor entero que indica la duración del mes en número de días.
Los siguientes programas ilustran el método lengthOfMonth() de YearMonth en Java:
Programa 1 :
// Program to illustrate the lengthOfMonth() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create YearMonth object YearMonth yearMonth = YearMonth.of(2016, 2); // Print the length of month in Number // of days, 29 in this case as 2016 is // a Leap Year System.out.println(yearMonth.lengthOfMonth()); } }
Producción:
29
Programa 2 :
// Program to illustrate the lengthOfMonth() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create YearMonth object YearMonth yearMonth = YearMonth.of(1990, 2); // Print the length of month in Number // of days, 28 in this case as 1990 is // not a Leap Year System.out.println(yearMonth.lengthOfMonth()); } }
Producción:
28
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#lengthOfMonth–