标签:fun cte tmp pre code out div char public
template<typename T> void funcTmp(T a, T b) { cout << "this is yiban" << endl; } template<> void funcTmp(const char* a, const char* b) { cout << "this is char*" << endl; } template<typename T> class CTem { public: void func() { cout << "this is usural func" << endl; } }; void CTem<char>::func() { cout << "this is char func" << endl; } template<> class CTem<int> { public: void func() { cout << "this is int func" << endl; } };
标签:fun cte tmp pre code out div char public
原文地址:https://www.cnblogs.com/weiyouqing/p/14598400.html