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