LocalDate在LocalDate中拥有私人访问权限

这个问题在这里已经有了答案:

  • 在Java中,封装私有,公共,受保护和私有26个答案之间的区别

  • 你所调用的构造函数是私有的。

    你需要打电话

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

    去建造你的日期。

    链接地址: http://www.djcxy.com/p/24061.html

    上一篇: LocalDate has private access in LocalDate

    下一篇: Accessibility scope of Java access modifiers