Polymorphism
Polymorphism is a fundamental concept in object-oriented programming (OOP) that allows objects of different types to be treated as objects of a common base type. The term "polymorphism" comes from the Greek words "poly," meaning many, and "morph," meaning form. There are two main types of polymorphism: compile-time (or static) polymorphism and runtime (or dynamic) polymorphism.
Same attribute names existing in multiple classes is not polymorphism.
When dealing with polymorphism, we often just analyze methods.
The two main types of polymorphism in Python is:
Different Classes, Same Named Methods, same -or- different behaviour.
Overriding & Inheritance (Next Page)
Basic Method Polymorphism
If we examine the 3 simple classes we made of Dog
, Cat
, and Bird
, they all share a common method called sound()
.
However, the behaviour of the method is different as a dog barks, a cat meows, and a bird peeps.
Methods showing polymorphism can differ by their arguments of the method and/or by their output/returned value of the method.
Last updated