El método lengthOfMonth() de la clase java.time.chrono.HijrahDate se utiliza para obtener el número de días presentes en un mes representado por una fecha hijrah particular.
Sintaxis:
public int lengthOfMonth()
Parámetro : este método no acepta ningún argumento como parámetro.
Valor devuelto: este método devuelve el número de días presentes en un mes representado por una fecha particular de Hijrah.
A continuación se muestran los ejemplos para ilustrar el método lengthOfMonth() :
Ejemplo 1:
Java
// Java program to demonstrate // lengthOfMonth() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.now(); // Getting length of a month // by using lengthOfMonth() method int length = hidate.lengthOfMonth(); // Display the result System.out.println("no of day present: " + length); } catch (DateTimeException e) { System.out.println("passed parameter can" + " not form a date"); System.out.println("Exception thrown: " + e); } } }
Producción:
no of day present: 30
Ejemplo 2:
Java
// Java program to demonstrate // lengthOfMonth() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.of(1345, 06, 23); // Getting length of a month // by using lengthOfMonth() method int length = hidate.lengthOfMonth(); // display the result System.out.println("no of day present: " + length); } catch (DateTimeException e) { System.out.println("passed parameter can" + " not form a date"); System.out.println("Exception thrown: " + e); } } }
Producción:
no of day present: 29
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#hashCode–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA