OverRiding Vs PolyMorphism

2019-02-13 21:54发布

What is the difference between the two?

A super class having myMethod(int a) and an inheriting class having the same method, Is this overriding or polymorphism?

I am clear with the difference b/w overriding and overloading, but the polymorphism and overriding seems the same. Or are they?

3条回答
霸刀☆藐视天下
2楼-- · 2019-02-13 22:23

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.

查看更多
ゆ 、 Hurt°
3楼-- · 2019-02-13 22:28

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/

查看更多
等我变得足够好
4楼-- · 2019-02-13 22:37

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..

查看更多
登录 后发表回答