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



描述

java.time.YearMonth.of(int 年份, 月份) 根据年份和月份获取 YearMonth 实例。

声明

以下是 java.time.YearMonth.of(int 年份, 月份) 方法的声明:

public static YearMonth of(int year,Month month)

参数

  • 年份 − 要表示的年份,介于 MIN_YEAR 至 MAX_YEAR 之间。

  • 月份 − 要表示的年份中的月份。

返回值

YearMonth,非空。

异常

如果年份值无效,则会抛出 DateTimeException 异常。

示例

以下示例展示了 java.time.YearMonth.of(int 年份, int 月份) 方式的使用:

package com.tutorialspoint;

import java.time.Month;
import java.time.YearMonth;

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

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

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

2017-12
广告