When I have inner classes with private methods or fields the compiler has to create synthetic package-protected accessor methods to allow the outer class to access those private elements (and vice-versa).
To avoid that, I usually make all fields and methods and constructors package-protected instead of private.
But how about the visibility of the class itself? Is there an overhead to
private static class A {
A(){}
}
versus
static class A {
A(){}
}
Note that the constructor is package-protected in both cases, or does making the class private change that?
Have you tried compiling it and comparing the byte code? Here are my results. For:
The above yields the following *.class files:
Now, if I move the class files, delete the
private
modifier, and recompile, I get:If you look at the VM Spec on class files, you'll see that there is a constant-sized bit field for specifying the access modifiers, so it should not be any surprise that the generated files are the same size.
In short, your access modifiers won't affect the size of the generated byte code (it also should not have any performance impact, either). You should use the access modifier that makes the most sense.
I should also add that there is a slight difference if you change the inner class from being declared
static
to not being declaredstatic
, as it implies an additional field referencing the outer class. This will take up slightly more memory than if you declared the inner classstatic
, but you'd be insane to optimize for this (usestatic
where it makes sense, and where you need it to be non-static, make it non-static, but don't convolute your design just to save a pointer of memory here or there).