El método isLeapYear() de la clase java.time.chrono.HijrahDate se utiliza para diferenciar entre el año bisiesto y el no bisiesto. Si el año representado por este HijrahDate es un año bisiesto, este método devolverá verdadero, de lo contrario, falso.
Sintaxis:
public boolean isLeapYear()
Parámetro : este método no acepta ningún argumento como parámetro.
Valor devuelto: este método devuelve un valor booleano , es decir, verdadero si el año proléptico es un año bisiesto; de lo contrario, falso.
A continuación se muestran los ejemplos para ilustrar el método isLeapYear() :
Ejemplo 1:
Java
// Java program to demonstrate // isLeapYear() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; public class GFG { public static void main(String[] argv) { // Creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.of(1398, 03, 23); System.out.println("HijrahDate: " + hidate.toString()); // Checking if the date is leap year or not // by using isLeapYear() method boolean flag = hidate.isLeapYear(); // Display the result if (flag) System.out.println("Leap year"); else System.out.println("Not a leap year"); } }
HijrahDate: Hijrah-umalqura AH 1398-03-23 Not a leap year
Ejemplo 2:
Java
// Java program to demonstrate // isLeapYear() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; public class GFG { public static void main(String[] argv) { // Creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.now(); System.out.println("HijrahDate: " + hidate.toString()); // Checking if the date is leap year or not // by using isLeapYear() method boolean flag = hidate.isLeapYear(); // Display the result if (flag) System.out.println("Leap year"); else System.out.println("Not a leap year"); } }
HijrahDate: Hijrah-umalqura AH 1441-06-25 Leap year
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#isLeapYear–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA