El método lengthOfMonth() de la clase LocalDate en Java devuelve la duración del mes representado por esta fecha.
Sintaxis :
public int lengthOfMonth()
Parámetro : este método no acepta parámetros.
Valor devuelto : la función devuelve la duración del mes en días.
Los siguientes programas ilustran el método lengthOfMonth() de LocalDate 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) { // Parses the first date LocalDate dt1 = LocalDate.parse("2018-11-27"); // Checks System.out.println(dt1.lengthOfMonth()); } }
Producción:
30
Programa 2 :
// Program to illustrate the lengthOfMonth() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the first date LocalDate dt1 = LocalDate.parse("2018-01-27"); // Checks System.out.println(dt1.lengthOfMonth()); } }
Producción:
31
Referencia : https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#lengthOfMonth()