Static members from superclass are not inherited to the sub class. Static methods cannot be overridden in the subclass. Same method can be redefined in the subclass, thus hiding the superclass [...]
Static keyword can be applied to instance variable, instance method and inner classes. There is only one copy of static variable and all objects share them. Static variables are loaded and [...]