The
of(Month month, int dayOfMonth) method of the
MonthDay class in Java is used to get an instance of
MonthDay.
Syntax:
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.
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(Month month, int dayOfMonth) method of MonthDay in Java:
Program 1:
Output:
MonthDay: --05-09
Program 2: