El método lengthOfMonth() de la interfaz ChronoLocalDate 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 ChronoLocalDate en Java:
Programa 1 :
// Program to illustrate the lengthOfMonth() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parse the date ChronoLocalDate dt1 = LocalDate.parse("2018-11-27"); // Get the length of the month System.out.println(dt1.lengthOfMonth()); } }
Producción:
30
Programa 2 :
// Program to illustrate the lengthOfMonth() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the date ChronoLocalDate dt1 = LocalDate.parse("2018-01-27"); // Get the length of the month System.out.println(dt1.lengthOfMonth()); } }
Producción:
31
Referencia : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#lengthOfMonth–
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA