📅  最后修改于: 2022-03-11 14:52:46.482000             🧑  作者: Mango
import java.time.LocalDate;
import java.time.Year;
public class YearExample{
public static void main(String[] args) {
Year y = Year.of(2017);
LocalDate l = y.atDay(123);
System.out.println(l);
}
}