标签:nbsp name span div code template return ret type
1 template <typename Type> //关键字class 与typename的区别,,前者可能是类,后者是一个类型 2 Type min(Type a, Type b) 3 { 4 return a < b ? a : b; 5 } 6 7 template <class Type> //Type为模板类型参数,可以加逗号后面跟其他非类型参数 8 Type min2(Type a, Type b) 9 { 10 return a < b ? a : b; 11 }
标签:nbsp name span div code template return ret type
原文地址:https://www.cnblogs.com/kalzzz-thingg/p/13216091.html