2017年1月5日
摘要: C++的模板及模板特化的几种特化:方式1特化:template<class T>class Compare{public: static bool IsEqual(const T& lh, const T& rh) { return lh == rh; }};template<>class Comp 阅读全文
posted @ 2017-01-05 19:29 abelian 阅读(232) 评论(0) 推荐(0)