Polymorphism
"Same method name, different behaviour per type" — central in OOP.
animal.speak() says "woof" for a Dog and "meow" for a Cat. The compiler/runtime picks the right implementation. Built on inheritance and interfaces.
"Same method name, different behaviour per type" — central in OOP.
animal.speak() says "woof" for a Dog and "meow" for a Cat. The compiler/runtime picks the right implementation. Built on inheritance and interfaces.