its obvious that the Default access modifier for the normal class is package private and it's private for the inner Local class or the inner anonymous but what is not obvious to me that Member class it like a private member when we trying to see it from outside the container class so is it private or package private?
Member Class access modifier
93 Views Asked by Antwan At
2
Like Tim B stated everything by default is package private, except for in interfaces.
The following code segment demonstrates this.