I am a little confused over the term "package private" that some of the documentation uses, along with the usage of "default access." Aren't package private and default access both synonymous with protected?
|
|
Yes, it's almost the same. The protected modifier specifies that the member can only be accessed within its own package (as with package-private) and, in addition, by a subclass of its class in another package. |
|||||||||||||
|
|
The "default" access modifier (the one where none of them are explicitly given) is "package-private", which means only things in the same package can access them. However, being in the same package implies nothing about the inheritance relationship between classes -- it's purely a naming convention. "Protected" means that not only classes in the same package, but also subclasses (regardless of which package those subclasses are in) will be able to access it. |
|||||
|
|
The default access for classes is package-private, however the default access for interface members is public. e.g.
The default access rules for interfaces are not the same as for classes. |
|||
|
|
|
package private and default access are synonym... An object also can access protected member of the objects whose classes are on the same package.. An object also can access protected member of its superclasses without a condition about their package. As a concrete example ;
|
|||||||
|
|
From Java Language Spec
|
|||||
|
|
'Package private' and default access are the same. In early releases of the compiler around 1.1.2/3, 'package' was an allowed modifier, but ignored, meaning the same as no modifier, i.e. 'package private'. Shortly afterwards there was a short lived fashion for putting /package/ (as a comment) in such situations. Similarly at that time you could declare things like synchronized classes. Neither of them is the same as 'protected', which extends to derived classes in other packages. |
|||
|
|