OverRiding Vs PolyMorphism

Overriding is when you call a method on an object and the method in the subclass with the same signature as the one in the superclass is called.

Polymorphism is where you are not sure of the objects type at runtime and the most specific method is called. Therefore the behaviour of the method called may differ, depending on the objects type at runtime.

Overriding is a type of polymorphism along with overloading and dynamic (late) binding. You can see more details here about the different types.


I am doing my software architecture exam tomorrow, and this is what i have understood from my reading.

Polymorphism is a concept of object oriented programming that allows a field, in this case, an object, to be changed from one form to another. Poly = multiple, morph = change.

Overriding a method, is essentially a dynamic binding of a method which allows a method to be changed during run-time. It is a form of polymorphism since a method's functionality gets changed over the course of time.

I took some of my facts from here - https://beginnersbook.com/2013/03/polymorphism-in-java/


yes...by using overriding we achieve the property of polymorphism ...when u have multiple class deriving from a single parent class ...there by using overriding ...we define the derived class method's functionality and as they are derived from same parent we show the property of polymorphism..