Java / Inheritance
Are static members inherited to sub classes?
No. Static members cannot be inherited. However super class and the sub class can have static method with same signature.
Super class static member will be hidden at the sub class.
More Related questions...