Java中的 Year atMonth(Month month) 方法
Java中 Year 类的 atMonth(Month) 方法将当前年份对象与作为参数传递给它的月份组合在一起,以创建一个 YearMonth 对象。
语法:
public YearMonth atMonth(Month month)
参数:此方法接受单个参数月份。它是一年中的月份。它需要一个有效的 Month 对象并且不能为 NULL。
返回值:它返回由当前年份对象形成的 YearMonth 对象和作为参数传递给函数的有效月份。
下面的程序说明了Java中 Year 的 atMonth(Month month) 方法:
程序 1 :
// Program to illustrate the atMonth(Month) 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(Month.SEPTEMBER);
System.out.println(yearMonth);
}
}
输出:
2017-09
方案二:
// Program to illustrate the atMonth(Month) 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);
// Creates a YearMonth with this
// Year object and Month passed to it
YearMonth yearMonth = thisYear.atMonth(Month.JANUARY);
System.out.println(yearMonth);
}
}
输出:
2018-01
参考:https: Java/time/Year.html#atMonth-