Does Polymorphism basically mean overriding superclass' methods? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Does Polymorphism basically mean overriding superclass' methods?

20th Nov 2018, 6:41 AM
cree.py
cree.py - avatar
6 Answers
0
Yes,exactly. One method, many implementations.
7th Dec 2018, 2:34 AM
dρlυѕρlυѕ
dρlυѕρlυѕ - avatar
+ 6
Check out concept on Object Oriented Programming, you'll be more enlightened
20th Nov 2018, 9:46 AM
Da2
Da2 - avatar
+ 4
Polymorphism is a very important concept in object oriented programming which enables to change the behavior of the applications in the run time based on the object on which the invocation happens. ... Polymorphism is implemented using the concept of Method overloading and method overriding
7th Dec 2018, 12:12 PM
Da2
Da2 - avatar
+ 3
It's more than that... It's about a class being applied in different ways...
7th Dec 2018, 11:25 AM
Da2
Da2 - avatar
+ 2
The trick is to understand how to overload and override methods. To be honest, I'm still trying to master it 😨
7th Dec 2018, 12:23 PM
Da2
Da2 - avatar
+ 2
Overload and override are indispensable skills in OOP
7th Dec 2018, 12:27 PM
Da2
Da2 - avatar