摘要:
Templates定义一个模板使用的关键字:class和typename。在定义作为模板的时候:class和typename,作用是一样的出处:http://www.cplusplus.com/doc/tutorial/templates/一 函数模板1 定义方式template <class identifier> function_declaration; template <typename identifier> function_declaration;2 Exampletemplate <class T>T GetMax (T a, T b){ 阅读全文