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。
月 − 要表示的月份,从 1(一月)到 12(十二月)。
返回值
一个 YearMonth,不为 null。
异常
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