java.time.YearMonth.of() Method Example

Description

The java.time.YearMonth.of(int year,int month) method obtains an instance of YearMonth from a year and month.

Declaration

Following is the declaration for java.time.YearMonth.of(int year,int month) method.

public static YearMonth of(int year,int month)

Parameters

  • year − the year to represent, from MIN_YEAR to MAX_YEAR.

  • month − the month-of-year to represent, from 1 (January) to 12 (December).

Return Value

a YearMonth, not null.

Exceptions

DateTimeException − if either field value is invalid.

Example

The following example shows the usage of java.time.YearMonth.of(int years,int months) method.

package com.tutorialspoint;

import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth year = YearMonth.of(2017,12);
      System.out.println(year);     
   }
}

Let us compile and run the above program, this will produce the following result −

2017-12