Java中的年份 atMonth(int) 方法
Java中 Year 类的 atMonth(int) 方法将当前年份对象与作为参数传递给它的月份组合在一起,以创建一个 YearMonth 对象。
语法:
public YearMonth atMonth(int month)
参数:此方法接受单个参数月份。它是一年中的月份。它采用 1 到 12 之间的整数值,并且不能为 NULL。
返回值:它返回由当前年份对象形成的 YearMonth 对象和作为参数传递给函数的有效月份。
异常:如果作为参数传递给它的月份无效,则此方法抛出DateTimeException 。
下面的程序说明了Java中 Year 的 atMonth(int) 方法:
程序 1 :
// Program to illustrate the atMonth(int) method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Creates a Year object
Year thisYear = Year.of(2017);
// Creates a YearMonth with this
// Year object and Month passed to it
YearMonth yearMonth = thisYear.atMonth(4);
System.out.println(yearMonth);
}
}
输出:
2017-04
程序2 :说明异常。
// Program to illustrate the atMonth(int) method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Creates a Year object
Year thisYear = Year.of(2018);
try {
// Creates a YearMonth with this
// Year object and Month passed to it
YearMonth yearMonth = thisYear.atMonth(16);
System.out.println(yearMonth);
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 16
参考:https: Java/time/Year.html#atMonth-