关于java:LocalDate在LocalDate中具有私有访问权限

LocalDate has private access in LocalDate

本问题已经有最佳答案,请猛点这里访问。

我想找出一些年龄的人。我按照下面给出的答案:我如何计算爪哇人的年龄?

这就是我目前为止所拥有的:

1
2
3
4
public void setDOB(String day, String month, String year){

    LocalDate birthDate = new LocalDate(Integer.parseInt(year), Integer.parseInt(month), Integer.parseInt(day));
}

声明birthdate变量时出错。我收到以下错误:localdate(int,int,int)在localdate中具有私有访问权限。我不知道这个错误是什么意思,但我假设它与数据访问有关(例如私有、公共等)


(P)The constructor you are calling is private.(p)(P)You need to call(p)字母名称(P)准备好你的日期。(p)