Inner interface classes?
Are class that are declared inside and interface automatically declared static? I am aware that variables are automatically declared static 开发者_JS百科final. I'm just unsure as to interfaces.
If a Class is declared inside an Interface then it is static.
According to the JLS:
A member type declaration in an interface is implicitly static and public
精彩评论