The of(Month month, int dayOfMonth) method of the MonthDay class in Java is used to get an instance of MonthDay.
Syntax:
Java
Java
public static MonthDay of(
Month month, int dayOfMonth)
Parameters: This method accepts two parameters:
- month: It represents the month of year.
- dayOfMonth: It represents the day of month.
// Java program to demonstrate
// MonthDay.of(Month month, int dayOfMonth) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// apply of(Month month, int dayOfMonth) method
// of MonthDay class
MonthDay monthday = MonthDay.of(Month.MAY, 9);
// print both month and day
System.out.println("MonthDay: "
+ monthday);
}
}
Output:
Program 2:
MonthDay: --05-09
// Java program to demonstrate
// MonthDay.of(Month month, int dayOfMonth) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// apply of(Month month, int dayOfMonth) method
// of MonthDay class
MonthDay monthday = MonthDay.of(Month.MAY, 9);
// print only month
System.out.println("Month: "
+ monthday.getMonth());
}
}
Output:
References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#of(java.time.Month, int)Month: MAY