El método lengthOfMonth() de la clase java.time.chrono.ThaiBuddhistDate se utiliza para obtener el número de días presentes en un mes representado por una fecha ThaiBuddhist en 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 budista tailandesa en particular.
A continuación se muestran los ejemplos para ilustrar el método lengthOfMonth() :
Ejemplo 1:
// 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 // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.now(); // Getting length of a month // by using lengthOfMonth() method int length = hidate.lengthOfMonth(); // Display the result System.out.println( "Number of day present: " + length); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Number of day present: 31
Ejemplo 2:
// 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 // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.of(2020, 06, 23); // Getting length of a month // by using lengthOfMonth() method int length = hidate.lengthOfMonth(); // Display the result System.out.println( "Number of day present: " + length); } catch (DateTimeException e) { System.out.println( "Passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
Number of day present: 30
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#lengthOfMonth–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA