Java中的年份 atDay() 方法
Java中 Year 类的 atDay() 方法将当前年份与作为参数传递给它的一年中的某一天组合起来,以创建一个 LocalDate。
语法:
public LocalDate atDay(int dayOfYear)
参数:此方法接受单个参数 dayOfYear。这是一年中的一天。它可以取 1 到 365-366 之间的值。
返回值:它返回由当前年份形成的本地日期和作为参数传递给函数的年份日期。
异常:如果参数中传递的年份无效,即零或更小、366 或更大或等于 366 且当前年份不是闰年,则此方法抛出DateTimeException 。
下面的程序说明了Java中 Year 的 atDay() 方法:
程序 1 :
Java
// Program to illustrate the atDay() 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 local date with this
// Year object and day passed to it
LocalDate date = thisYear.atDay(31);
System.out.println(date);
}
}
Java
// Program to illustrate the atDay() 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 local date with this
// Year object and day passed to it
try {
LocalDate date = thisYear.atDay(367);
System.out.println(date);
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
2017-01-31
程序2 :说明异常。
Java
// Program to illustrate the atDay() 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 local date with this
// Year object and day passed to it
try {
LocalDate date = thisYear.atDay(367);
System.out.println(date);
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.time.DateTimeException: Invalid value for DayOfYear (valid values 1 - 365/366): 367
参考:https: Java/time/Year.html#atDay-int-