Método JapaneseDate lengthOfMonth() en Java con ejemplos

El método lengthOfMonth() de la clase java.time.chrono.JapaneseDate se usa para obtener el número de días presentes en un mes representado por una fecha japonesa 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 japonesa en particular.

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
            // JapaneseDate Object
            JapaneseDate hidate
                = JapaneseDate.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: 31

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
            // JapaneseDate Object
            JapaneseDate hidate
                = JapaneseDate.of(2020, 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: 30

Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/JapaneseDate.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *