C++(12)——命名空间,模板函数,模板类_c++ 整形重命名-CSDN博客

网站介绍:文章浏览阅读747次。模板函数相当于“图纸”template<class Type> //type是一个类型const Type & Max(const Type &a, const Type &b){ return a>b?a : b;} int main(){ int a = Max(12, 34); char ch = Max('a','b'); _c++ 整形重命名