Thursday, February 12, 2026
HomeLanguagesJavaMonthDay getDayOfMonth() method in Java with Examples

MonthDay getDayOfMonth() method in Java with Examples

The getDayOfMonth() method of MonthDay class in Java gets the day-of-month field.

Syntax:

public int getDayOfMonth()

Parameter: This method accepts no parameters.

Returns: The function returns the day-of-month, from 1 to 31.

Below programs illustrate the MonthDay.getDayOfMonth() method:

Program 1:




// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--12-06");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Prints the day
        System.out.println(dt1.getDayOfMonth());
    }
}


Output:

6

Program 2:




// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        MonthDay tm1 = MonthDay.parse("--01-19");
  
        // Uses the function
        LocalDate dt1 = tm1.atYear(2018);
  
        // Prints the day
        System.out.println(dt1.getDayOfMonth());
    }
}


Output:

19

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getDayOfMonth–

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32499 POSTS0 COMMENTS
Milvus
128 POSTS0 COMMENTS
Nango Kala
6878 POSTS0 COMMENTS
Nicole Veronica
11998 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12092 POSTS0 COMMENTS
Shaida Kate Naidoo
7010 POSTS0 COMMENTS
Ted Musemwa
7248 POSTS0 COMMENTS
Thapelo Manthata
6960 POSTS0 COMMENTS
Umr Jansen
6951 POSTS0 COMMENTS