- 全特化,模板特化,全特化有如下例子
template<typename T1, typename T2> class Test { public: Test(T1 i,T2 j):a(i),b(j){cout<<"模板类"<<endl;} private: T1 a; T2 b; }; template<> class Test<int , char> { public: Test(int i, char j):a(i),b(j){cout<<"全特化"<<endl;} private: int a; char b; }; template <typename T2> class Test<char, T2> { public: Test(char i, T2 j):a(i),b(j){cout<<"偏特化"<<endl;} private: char a; T2 b; };
全特化:参数类型确定,100%定制
偏特化:参数有一半不确定。
模板类:参数全部不确定。
- 调用:
Test<double , double> t1(0.1,0.2); //模板类 Test<int , char> t2(1,'A'); //全特化 Test<char, bool> t3('A',true); //偏特化
- 而对于函数模板,却只有全特化,不能偏特化:
//模板函数 template<typename T1, typename T2> void fun(T1 a , T2 b) { std::cout<<"模板函数"<< std::endl; } //全特化 template<> void fun<int ,char >(int a, char b) { std::cout<<"全特化"<< std::endl; } //函数不存在偏特化:下面的代码是错误的 /* template<typename T2> void fun<char,T2>(char a, T2 b) { cout<<"偏特化"<<endl; } */
至于为什么函数不能偏特化,似乎不是因为语言实现不了,而是因为偏特化的功能可以通过函数的重载完成。