From: JavaWorld
I understand static
may only be used with nested classes and that makes them equivalent to a top-level class. I also understand that this enables them to declared independently of the enclosing class.
That's the theory, can anybody think of a good practical example as to why we would need to do this? (The example in the link could well have been that of an inner class AFAIK).
Also - the reason behind the question - why have an ambiguous name at all, why "reuse" the word
static
and give it a different connotation?
You use it when your class is naturally nested, but has no need for the auto-magic $this parent reference that an inner class has in Java. Every non-static inner class has an embedded reference to its containing instance. When you don't actually need that reference, it's best not to create it. It can cause objects to remain in memory much longer than they need to, and it can also be a pain when you start serializing objects/trying to send them over the network, etc. You can end up with a much larger object graph than you expected or needed to get serialized!
Implementations of Map.Entry are a good example. It's obviously 'natural' for it to be nested in the map implementation, but doesn't have any need to really hold a parent reference back to the map.
For #2, how is it that different? Static on a field or method means it is an attribute of the class definition rather than the instance. You can access and use it without having an instance. Static on a nested class also means that it is an attribute of the class definition, you can access and use it without having an instance.