- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 时长
- java.time - 时间
- java.time - 本地日期
- java.time - 本地日期和时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - 分区日期时间
- java.time - 分区标识符
- java.time - 分区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
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
广告