Polymorphism
Last updated
Last updated
Polymorphism is the provision of a single interface to entities of different types or the use of a single symbol to represent multiple different types.
: defines a common interface for an arbitrary set of individually specified types (function overloading or operator overloading).
: when one or more types are not specified by name but by abstract symbols that can represent any type (templates in C++ and D, generics in C# and Java).
(also called subtype polymorphism or inclusion polymorphism): when a name denotes instances of many different classes related by some common superclass. (you can pass an object to a method that takes more generic type – )