0 votes
by (524 points)

Overload or Override static methods in Java

1 Answer

0 votes
by (1.1k points)
No, we cannot override static methods because method overriding is based on dynamic binding at runtime and the static methods are bonded using static binding at compile time. So, we cannot override static methods.
Welcome to CodersEditor Q&A, where you can ask questions and receive answers from other members of the community.
...