> [!tldr] Same method signature, different implementations
Polymorphism is when a child subclass implements its own version of a method of the superclass.
>[!example]
> Superclass: car
> Method: start()
>
> subclass: EV
> Start() → turn on electric motor
>
> subclass: ICE
> Start() → turn on the gas engine
****
# More
## Source
- self