Sunday, November 23, 2025
HomeLanguagesJavaMonthDay of(int, int) method in Java with Examples

MonthDay of(int, int) method in Java with Examples

The of(int. int) method of the MonthDay class in Java is used to get an instance of MonthDay.
Syntax:

public static MonthDay of(
     int month, int dayOfMonth)

Parameters: This method accepts two parameters:

  • month: It represents the month of year.
  • dayOfMonth: It represents the day of month.

Return value: This method returns the month-day.

Exceptions: This method throws DateTimeException if the value of any field is out of range or the day of month is invalid for the month.

Below programs illustrate the of(int. int) method of MonthDay in Java:

Program 1:




// Java program to demonstrate
// MonthDay.of(int, int) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply of(int, int) method
        // of MonthDay class
        MonthDay monthday = MonthDay.of(5, 9);
  
        // print both month and day
        System.out.println("MonthDay: "
                           + monthday);
    }
}


Output:

MonthDay: --05-09

Program 2:




// Java program to demonstrate
// MonthDay.of(int. int) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply of(int. int) method
        // of MonthDay class
        MonthDay monthday = MonthDay.of(5, 9);
  
        // print only month
        System.out.println("Month: "
                           + monthday.getMonth());
    }
}


Output:

Month: MAY

References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#of(int, int)

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6785 POSTS0 COMMENTS
Nicole Veronica
11932 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12000 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6864 POSTS0 COMMENTS
Umr Jansen
6852 POSTS0 COMMENTS