Java year atMonthDay()方法
Java中Year类的atMonthDay(MonthDay)方法将当前的年对象与作为参数传递给它的月日对象相结合,以创建一个LocalDate对象。
语法:
public LocalDate atMonthDay(MonthDay monthDay)
参数 :该方法接受一个参数monthDay。它是MonthDay对象,指定要使用的一个月的日期。它需要一个有效的MonthDay对象,不能为空。
返回值 :它返回一个由当前年份对象和作为参数传递给函数的有效 MonthDate 对象组成的 LocalDate 对象。
注意 :如果当前年份不是闰年,并且作为参数传递的 MonthDay 对象指定为 “2 月 29 日”,那么在生成的 LocalDate 对象中,它将被自动四舍五入为 “2 月 28 日”。
下面的程序说明了Java中年份的atMonthDay(MonthDay)方法:
程序1 :
// Program to illustrate the atMonthDay(MonthDay) 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 MonthDay object
MonthDay monthDay = MonthDay.of(9, 15);
// Creates a LocalDate with this
// Year object and MonthDay passed to it
LocalDate date = thisYear.atMonthDay(monthDay);
System.out.println(date);
}
}
输出:
2017-09-15
程序2 :由于2018年不是闰年,在以下程序中,第29天将被四舍五入为28天。
// Program to illustrate the atMonthDay(MonthDay) 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 MonthDay object
MonthDay monthDay = MonthDay.of(2, 29);
// Creates a LocalDate with this
// Year object and MonthDay passed to it
LocalDate date = thisYear.atMonthDay(monthDay);
System.out.println(date);
}
}
输出:
2018-02-28
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#atMonthDay-java.time.MonthDay-