Static Method Overloading And Overriding in Java
When a class member is defined using static keyword in Java it is associated with the class rather than with the instances of the class. That gives rise to a question can we overload or override static methods in Java. This post tries to answer this question. Before that let’s…