類模板的部分定製, 是指使用類模板的類型(T), 但是不同種類, 如左值, 右值等;
類模板的部分定製, 和類模板定製相同, 都需要類名相同,參數相同;
定製的形參(parameter)比原始模板(original template)更加匹配;
類模板有部分定製, 但函數模板沒有, 函數模板只能是重載;
類模板的定製成員, 類模板可以單獨定製成員類型, 使不同的執行個體化類, 使用定製的成員;
代碼(部分定製):
/* * CppPrimer.cpp * * Created on: 2013.12.9 * Author: Caroline */ /*eclipse cdt, gcc 4.8.1*/ #include <iostream> #include <vector> #include <cstring> using namespace std; template<typename T> struct myclass{ void print() { std::cout << "myclass!" << std::endl; } }; //類的部分定製, 左值 template<typename T> struct myclass<T&>{ void print() { std::cout << "myclass! lvalue" << std::endl; } }; //右值 template<typename T> struct myclass<T&&>{ void print() { std::cout << "myclass! rvalue" << std::endl; } }; int main(void) { int i(1988); int& ri = i; myclass<decltype(1988)> mc; //原始版本 mc.print(); myclass<decltype(ri)> mcl; //左值版本 mcl.print(); myclass<decltype(std::move(i))> mcr; //右值版本 mcr.print(); return 0; }
更多精彩內容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/
輸出:
myclass! myclass! lvalue myclass! rvalue
代碼(定製成員):
/* * CppPrimer.cpp * * Created on: 2013.12.9 * Author: Caroline */ /*eclipse cdt, gcc 4.8.1*/ #include <iostream> #include <vector> #include <cstring> using namespace std; template<typename T> struct myclass{ void print() { std::cout << "myclass!" << std::endl; } }; //定製成員的int版本 template<> void myclass<int>::print() { std::cout << "myclass! int" << std::endl; } int main(void) { myclass<double> mcd; mcd.print(); myclass <int> mci; mci.print(); return 0; }
輸出:
myclass! myclass! int
作者:csdn部落格 Spike_King