LocalDate在LocalDate中拥有私人访问权限
这个问题在这里已经有了答案:
你所调用的构造函数是私有的。
你需要打电话
LocalDate birthDate = LocalDate.of(Integer.parseInt(year), Integer.parseInt(month), Integer.parseInt(day));
去建造你的日期。
链接地址: http://www.djcxy.com/p/24061.html这个问题在这里已经有了答案:
你所调用的构造函数是私有的。
你需要打电话
LocalDate birthDate = LocalDate.of(Integer.parseInt(year), Integer.parseInt(month), Integer.parseInt(day));
去建造你的日期。
链接地址: http://www.djcxy.com/p/24061.html