Originally posted by Jammy Wells: why a class cannot be protected?
A class can be protected if it's nested.
As to why a top-level class can't be protected... What would this mean?
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer sscce.org
jim xu
Greenhorn
Joined: Nov 18, 2007
Posts: 6
posted
0
In terms of the class member, protected means only the inherited classes can see those members. The package access for class is somewhat like that. Only classes inside the same package can see that class. So can we treat the default 'package access' for a class like a 'protected' class?