一。函数模板的特化
考虑:
template<typename T>
T max(T a, T b)
{
return a > b ? a : b;
}
int main()
{
cout<<max(10, 20)<<endl; // 正确,输出20
cout<<max("hello", "world!")<<endl; // 没准输出什么,hello或者world!
}
这是因为char*类型并未指定如何比较,因此,max函数模板需要对char*类型特别处理,称为特化:
template<>
char* max(char* a, char* b)
{
return strlen(a) > strlen(b) ? a : b;
}
二。类模板的特化
template<typename T>
class Test
{
T m_t;
public:
xxxx
}
template<>
class Test<char*>
{
char* m_t;
public:
xxxxx
}
int main()
{
Test<int> a;
Test<char*> b;
}