+ 5
No, overriding would imply that you'd need to be able to create an instance of a child class. Static methods are run from the class itself not an instance of that class. Child classes don't have access to private members of the parent class. You can shadow a static method from a parent class in the child class however, but this is not considered overriding.
4th Oct 2017, 6:01 AM
ChaoticDawg
ChaoticDawg - avatar