Using function template specialization : overload template function « template « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

template<class T> T larger(T a, T b);             // Function template prototyp
e
template<> long* larger<long*>(long* a, long* b); // Specialization

int main() {
  cout << "Larger of 1.5 and 2.5 is " << larger(1.5, 2.5) << endl;
  cout << "Larger of 3.5 and 4.5 is " << larger(3.5, 4.5) << endl;
 
  int a_int = 35;
  int b_int = 45;
  cout << larger(a_int, b_int)<< endl;

 
  long a_long = 9;
  long b_long = 8;
  cout << larger(a_long, b_long)<< endl;

  cout << *larger(&a_long,&b_long)<< endl;

return 0;
}

template <class T> T larger(T a, T b) {
  cout << "standard version " << endl;
  return a>b ? a : b;
}

template <> long* larger<long*>(long* a, long* b) {
  cout << "specialized version " << endl;
  return *a>*b ? a : b;
}
standard version
Larger of 1.5 and 2.5 is 2.5
standard version
Larger of 3.5 and 4.5 is 4.5
standard version
45
standard version
9
specialized version
9








13.10.overload template function
13.10.1.Overload generic method and non-generic method
13.10.2.Using an overloaded function template
13.10.3.Using function template specialization