java.time.YearMonth.of() 方法示例



说明

java.time.YearMonth.of(int year, int month) 方法从年和月获取一个 YearMonth 实例。

声明

以下是 java.time.YearMonth.of(int year, int month) 方法的声明。

public static YearMonth of(int year,int month)

参数

  • year - 表示的年份,从 MIN_YEAR 到 MAX_YEAR。

  • month - 表示的年份中的月份,从 1(一月)到 12(十二月)。

返回值

非空的 YearMonth。

异常

DateTimeException - 如果任一字段值无效。

示例

以下示例显示了 java.time.YearMonth.of(int years, int months) 方法的用法。

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);     
   }
}

让我们编译并运行上述程序,这将生成以下结果 -

2017-12
广告