Open In App

JapaneseDate lengthOfMonth() method in Java with Examples

Last Updated : 31 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The lengthOfMonth() method of java.time.chrono.JapaneseDate class is used to get the number of days present in a month represented by a particular Japanese date.

Syntax:

public int lengthOfMonth()

Parameter: This method does not accept any argument as a parameter.

Return Value: This method returns the number of days present in a month represented by a particular japanese date.

Below are the examples to illustrate the lengthOfMonth() method:

Example 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);
        }
    }
}


Output:

no of day present: 31

Example 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);
        }
    }
}


Output:

no of day present: 30

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/JapaneseDate.html#lengthOfMonth–



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads