这意味着如果我省略了本地类成员的访问修饰符,那么类声明方法是否可以访问成员?还有谁呢?
我在谈论本地课程,即在方法中定义的课程
因此,这不是重复的
答案 0 :(得分:1)
默认修饰符是包级别修饰符。可在包装内取用。
答案 1 :(得分:1)
无法将本地类声明为public,protected,private或static。这些修饰符适用于类的成员;它们不允许使用局部变量声明或本地类声明。
*Meaning if I ommit the access modifier for members of local classes, can the class declaring method access the members?*
没有声明该方法的类无法访问本地类成员。 A local class仅在定义它的块中可见;它永远不会在那个街区之外使用。