Types of Polymorphism
Function Templates
Class Tempaltes
Casting
So far, we have covered two types of polymorphism:
Inclusion
run-time polymorphism which involves virtual functions and derived classes
Overloading
compile-time polymorphism which involves two or more functions having a different set of arguments
We will now cover two other types of polymorphism:
Parametric
compile-time polymorphism which involves the use of templates
Coercion
compilation or at run-time polymorphism which involves casting variables from one type to another
C++ introduces parametric polymorphism via templates
Instead of defining the types of each argument, the developer creates a template for them
The compiler creates a version of the templated function for all combinations of arguments that it finds in the source code
#include <iostream>
template <typename T>
T max(T a, T b) {
return (a > b) ? a : b;
}
int main() {
int i1 = 10, i2 = 20;
std::cout << "Max of " << i1 << " and " << i2
<< " is " << max(i1, i2) << std::endl;
double d1 = 10.5, d2 = 20.3;
std::cout << "Max of " << d1 << " and " << d2
<< " is " << max(d1, d2) << std::endl;
char c1 = 'a', c2 = 'z';
std::cout << "Max of " << c1 << " and " << c2
<< " is " << max(c1, c2) << "" << std::endl;
return 0;
}
The line: template<typename identifier>
tells the compiler that the following block of code is a template
It also tells which identifiers to substitute for types during compilation time
Note that templated functions can have more than one type of templated identifier
The compiler cannot always deduct a type for return arguments