The getDayOfMonth() method of LocalDate class in Java gets the day-of-month field.
Syntax:
public int getDayOfMonth()
Parameter: This method does not accepts any parameter.
Return Value: The function returns the day of the month which is in range 1-31.
Below programs illustrate the getDayOfMonth() method of LocalDate in Java:
Program 1:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-11-27" );
System.out.println(dt.getDayOfMonth());
}
}
|
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-01-01" );
System.out.println(dt.getDayOfMonth());
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfMonth()