The getDayOfMonth() method of an LocalDateTime class is used to return the day-of-month field. This method returns an integer value ranging from 1 to 31, i.e. the Dates of a months.
Syntax:
public int getDayOfMonth()
Parameter: This method does not accept any parameter.
Returns: This method returns an integer value which represents the day-of-month and it ranges from 1 to 31.
Below programs illustrate the LocalDateTime.getDayOfMonth() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2018-12-03T12:39:10" );
int dayOfMonth = local.getDayOfMonth();
System.out.println( "DayOfMonth: "
+ dayOfMonth);
}
}
|
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalDateTime local
= LocalDateTime.parse( "2019-01-28T22:29:10" );
int dayOfMonth = local.getDayOfMonth();
System.out.println( "DayOfMonth: "
+ dayOfMonth);
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getDayOfMonth()
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!