El método lengthOfYear() de la interfaz ChronoLocalDate en Java devuelve la duración del año representado por esta fecha.
Sintaxis :
public int lengthOfYear()
Parámetro : este método no acepta parámetros.
Valor devuelto : la función devuelve 366 si el año es bisiesto, 365 en caso contrario.
Los siguientes programas ilustran el método lengthOfYear() de ChronoLocalDate en Java:
Programa 1 :
// Program to illustrate the lengthOfYear() 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-11-27"); // Get the length of the year System.out.println(dt1.lengthOfYear()); } }
Producción:
365
Programa 2 :
// Program to illustrate the lengthOfYear() 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("2016-11-27"); // Get the length of the year System.out.println(dt1.lengthOfYear()); } }
Producción:
366
Referencia : https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#lengthOfYear–
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