well, to be blunt and un-helpful 1- "because Sun made it that way." But... to give a little bit more explanation: 2- Cause the JLS says so (real helpful there huh?) How's this one --> 3- it wouldn't make sense to make a top-level class as private -- how would you access it to run it? No other class could see it! 4- There's sorta no point to mark a top-level class as protected -- protected access gives you the same access as default (package/friendly) but you can also see it from a sub-class. But how would that work when it's a top-level class that you're referring to?
Originally posted by Jessica Sant: protected access gives you the same access as default (package/friendly) but you can also see it from a sub-class. But how would that work when it's a top-level class that you're referring to?
if a top-level class had protected access couldn't another class from another package then extend it and thus access it? ps- interesting poem you have there in your sig jessica!
giddee up
Jim Yingst
Wanderer
Sheriff
Joined: Jan 30, 2000
Posts: 18670
posted
0
The problem is - in order to extend a class, the class definition must already be visible to you. (E.g. you couldn't extend a private class, period.) Before a protected class can be visible to you, you have to extend it. Which comes first? I don't really see a logical way around this problem, and moreover I don't see any real benefit to having a protected class anyway. You can always make all the methods, constructors and fields protected or private, while making the class itself public - this would prevent any outside code from doing anything significant with the class. So there's no real need for Java to allow protected classes anyway, and they'd just cause confusion. And as Jessica said, there's no way to make use of a private top-level class - so it makes even more sense to ban this possiblity.
"I'm not back." - Bill Harding, Twister
Jasper Vader
Ranch Hand
Joined: Jan 10, 2003
Posts: 284
posted
0
thanks Jim, Jessica, good words. interesting question!
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: How come public and friendly(default) access is allowed for top level class but not