class MyType
{
};
/* 全特化和偏特化的作用就是可以根据具体的模板参数来决定实例化哪一个类 */
template<class T, class T1> class MyIter
{
public:
MyIter()
{
cout << "This is normal template." << endl;
}
};
/* 全特化 */
/* 这里的意思就是如果两个模板参数都是char*类型则实例化此类 */
template<> class MyIter<char*, char*>
{
public:
MyIter()
{
cout << "This is <char*, char*> template." << endl;
}
};
/* 偏特化 */
/* 这里的意思是如果模板参数第二个参数是char*类型且第一个参数是指针类型则实例化此类 */
template<class T> class MyIter<T *, char *>
{
public:
MyIter()
{
cout << "This is <T *, char *> template." << endl;
}
};
int main(int argc, char* argv[])
{
MyIter<int, char*> obj1;
MyIter<int *, char *> obj2;
MyIter<char*, char*> obj3;
MyIter<MyType *, char*> obj4;
system("pause");
}