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()
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
29 Nov, 2018
Like Article
Save Article