Given what I know of every other type of static feature of programming––I would think the answer is 'no'. However, seeing statements like OuterClass.StaticNestedClass nestedObject = new OuterClass.StaticNestedClass(); makes me wonder.
|
|
|||
| show 6 more comments |
|
Yes, there is nothing in the semantics of a
See also
Now, of course the nested type can do its own instance control (e.g. But in general, yes, a Note that technically, a JLS 8.1.3 Inner Classes and Enclosing Instances
That is, according to JLS terminology, an inner class is one that isn't So what does
See also |
|||||||||||||
|
Just to be sure 100% of that I extended your snippet:
And of course the result is:
|
|||
|
|
|
It is legal. The fact that the inner class is static gives you a benefit here; its instances are not bound to any instance of the containing class, so they can be freely instantiated (as long as the access qualifier allows it). The price, however, is that the inner class can't use non static members/methods of the containing class. |
|||
|
|
|
Yeah you can make instances of it as many times as you want. Maybe the reason why you see that, is because the programme thought about storing a reference somewhere. Though i agree with you seems strange :S |
|||
|
|
staticinner classes are instance-controlled? This is a very interesting assumption, one that is perhaps worth investigating. Feel free to write as much as you want on how you understand things are, maybe it'll lead to more interesting discussions. – polygenelubricants Apr 27 '10 at 7:58