Friday, February 6, 2026
HomeLanguagesJavaYearMonth of(int, Month) method in Java with Examples

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

The of(int year, Month month) method of the YearMonth class in Java is used to get an instance of YearMonth from a year and month.
Syntax:

public static YearMonth of(
    int year, Month month)

Parameters: This method accepts two parameters:

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

Return value: This method returns the year-month.

Exceptions: This method throws DateTimeException if the value of any field is invalid.

Below programs illustrate the of(int year, Month month) method of YearMonth in Java:

Program 1:




// Java program to demonstrate
// YearMonth.of(int year, Month month) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply of(int year, Month month) method
        // of YearMonth class
        YearMonth yearmonth
            = YearMonth.of(2020, Month.MAY);
  
        // print year and month
        System.out.println("YearMonth: "
                           + yearmonth);
    }
}


Output:

YearMonth: 2020-05

Program 2:




// Java program to demonstrate
// YearMonth.of(int year, Month month) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply of(int year, Month month) method
        // of YearMonth class
        YearMonth yearmonth
            = YearMonth.of(2020, Month.MAY);
  
        // print only year
        System.out.println("Year: "
                           + yearmonth.getYear());
    }
}


Output:

Year: 2020

Program 3:




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


Output:

Month: MAY

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7235 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6929 POSTS0 COMMENTS