why static ia not allowed in method overriding
Sigiloso
In method overriding, binding is resolved at runtime whereas static methods are bonded using static binding. Also static method is shared by all the objects of the class and if you override it that means you are changing its property. hence java does'nt allows to override static method.