Home »
Java »
Java Reference »
Java LocalDate Class
Java LocalDate Class | getDayOfMonth() Method with Example
LocalDate Class getDayOfMonth() method: Here, we are going to learn about the getDayOfMonth() method of LocalDate Class with its syntax and example.
Submitted by Preeti Jain, on May 29, 2020
LocalDate Class getDayOfMonth() method
- getDayOfMonth() method is available in java.time package.
- getDayOfMonth() method is used to get the day-of-month field value of this LocalDate.
- getDayOfMonth() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- getDayOfMonth() method does not throw an exception at the time of getting the day of the month.
Syntax:
public int getDayOfMonth();
Parameter(s):
Return value:
The return type of this method is int, it returns the value for the field day-of-month of this LocalDate and the number of days in a month starts from 1 to 31.
Example:
// Java program to demonstrate the example
// of getDayOfMonth() method
// of LocalDate
import java.time.*;
public class GetDayOfMonthOfLocalDate {
public static void main(String args[]) {
// Instantiates two LocalDate
LocalDate l_da1 = LocalDate.parse("2007-04-05");
LocalDate l_da2 = LocalDate.now();
// Display l_da1,l_da2
System.out.println("LocalDate l_da1 and l_da2: ");
System.out.println("l_da1: " + l_da1);
System.out.println("l_da2: " + l_da2);
System.out.println();
// Here, this method gets the value of
// the field day-of-month in this
// date object l_da1
int dom = l_da1.getDayOfMonth();
// Display dom
System.out.println("l_da1.getDayOfMonth(): " + dom);
// Here, this method gets the value of
// the field day-of-month in this
// date object l_da2
dom = l_da2.getDayOfMonth();
// Display dom
System.out.println("l_da2.getDayOfMonth(): " + dom);
}
}
Output
LocalDate l_da1 and l_da2:
l_da1: 2007-04-05
l_da2: 2020-05-29
l_da1.getDayOfMonth(): 5
l_da2.getDayOfMonth(): 29