📅  最后修改于: 2023-12-03 15:01:58.107000             🧑  作者: Mango
YearMonth.of(int, Month)
方法及示例在Java中,YearMonth
类代表了一个具体的年份和月份的组合。YearMonth.of(int, Month)
方法是YearMonth
类的静态方法,用于创建一个表示给定年份和月份的YearMonth
对象。
public static YearMonth of(int year, Month month)
year
:表示年份的整数值month
:表示月份的Month
枚举值返回一个YearMonth
对象,表示给定的年份和月份组合。
YearMonth yearMonth = YearMonth.of(2022, Month.JANUARY);
System.out.println("年份:" + yearMonth.getYear());
System.out.println("月份:" + yearMonth.getMonth());
// 输出:年份:2022
// 月份:JANUARY
上述示例创建了一个表示2022年1月的YearMonth
对象,并输出了该对象的年份和月份。
year
参数必须是合法的年份,即一个合法的整数值。month
参数必须是Month
枚举类中定义的月份之一,否则会抛出DateTimeException
异常。以上就是YearMonth.of(int, Month)
方法的介绍及示例。通过这个方法,我们可以方便地创建表示年份和月份的YearMonth
对象,并进行相关的操作和使用。