C++范型编程就是使用模板(template),如template <class T>
T get_max(T& t1 T& t2)
{
  return t1>t2?t1:t2;
}
...
int maxInt;
long maxLong;
maxInt = get_max<int>(1,2);
maxLong=get_max<long>(1L,2L);
...