El método length() de la clase Year en Java se usa para devolver la longitud del valor del objeto de este año en número de días. Solo puede haber dos longitudes posibles de año, 365 (años no bisiestos) y 366 (años bisiestos).
Sintaxis :
public int length()
Parámetro : Este método no acepta ningún parámetro.
Valor de retorno : devuelve un valor entero que indica la duración del año en número de días.
Los siguientes programas ilustran el método length() de Year en Java:
Programa 1 :
// Program to illustrate the length() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create a Year object Year thisYear = Year.of(2016); // Print the length of this year in Number // of days, 366 in this case as 2016 is // a Leap Year System.out.println(thisYear.length()); } }
Producción:
366
Programa 2 :
// Program to illustrate the length() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Create a Year object Year thisYear = Year.of(1990); // Print the length of this year in Number // of days, 365 in this case as 1990 is not // a Leap Year System.out.println(thisYear.length()); } }
Producción:
365
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#length–