Are class that are declared inside and interface automatically declared static? I am aware that variables are automatically declared static final. I'm just unsure as to interfaces.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If a Class is declared inside an Interface then it is static. |
|||
|
|
|
According to the JLS:
|
|||
|
|
staticmeans it does not belong with any specific instance. :-) – Chris Jester-Young Jul 18 '11 at 17:24