In general, are there any benefits in declaring a private class as static?
In what cases would I want to use one of the following over the other?
private static class Foo
{
...
}
vs
private class Foo
{
...
}
|
|
If you need access to the member variables/methods of the enclosing class, use the non-static form. If you don't, use the static form. |
|||||||||||
|
|
The following partially will answer your question: Nested/Inner class in external file --Edit-- An example of inner (non-static) class would be list iterator. the list has to exist to have iterator on it. on the other hand static nested can be used like this (see builder in Effective Java):
} |
||||
|
|
|
static classes differ from ordinary classes only in that they can be accessed without their instances being created. so if you need some class to be accessable every time, use static |
|||||
|
|
This is an awesome read: Static classes in Java Summary:
|
|||||
|
|
I would assume you are referring to inner classes. I think the motivation would be coming from how you want to associate your inner class. If you want your inner class to be associated to a specific instance of its outer class, you'd use |
|||
|
|