Wednesday, July 3, 2024
HomeLanguagesJavaMonthDay of(Month, int) method in Java with Examples

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

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:




// 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:

MonthDay: --05-09

Program 2:




// 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:

Month: MAY

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

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments