+ 1
Does Polymorphism basically mean overriding superclass' methods?
6 Respuestas
0
Yes,exactly. One method, many implementations.
+ 6
Check out concept on Object Oriented Programming, you'll be more enlightened
+ 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
+ 3
It's more than that... It's about a class being applied in different ways...
+ 2
The trick is to understand how to overload and override methods. To be honest, I'm still trying to master it 😨
+ 2
Overload and override are indispensable skills in OOP