Access private field of a instance object

后端 未结 5 1021
孤城傲影
孤城傲影 2021-01-13 22:38

I have a class, which has one field named orbits (it has the same type as my class Body and has the private modifier):



        
5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-13 23:11

    According to section 6.6.1 of the Java Language Specification:

    Otherwise, if the member or constructor is declared private, then access is permitted if and only if it occurs within the body of the top level class (§7.6) that encloses the declaration of the member or constructor.

提交回复
热议问题