I know that this question has been done to death at StackOverflow and that there are numerous questions posted on this already. I've probably read every one of them and yet, there's this niggling doubt: I think I understand Overloading pretty well, and Overriding. What gets me is Polymorphism.
For example, the accepted answer to this question explains this with shape.Draw()
. I'm confused as to how this is different from Overriding (other times I'm confused with how it is different from Overloading).
Also - does Polymorphism inherently mean deriving from an abstract class? (I think almost all the answers I've read on the topic uses an abstract animal class and makes a cat and a dog meow/bark :)
To sum up, my questions are:
What is Polymorphism w.r.t. Overloading and Overriding?
Could somebody please explain Polymorphism without an abstract class - thanks!
Overloading/Overriding are not subtypes of Polymorphism, are they?
Edited to add a 3rd question and modify the 2nd question.