Code Safari

Chapter 101·Beginner

Polymorphism: One Call, Many Behaviours

01 / 04

The core idea

Same call, each type's own behaviour.

Different objects respond to the same method in their own way, so calling code works with the general type and never checks which specific one it has.

Polymorphism: One Call, Many Behaviours | Code Safari