摘要: 函数模板 两个不同类型参数自动推断返回类型 自动推断返回类型 template<typename T1, typename T2> //typename是比较新的写法,老版中也可以写成class auto max (T1 a, T2 b) { return b < a ? a : b; } decl 阅读全文
posted @ 2023-03-11 19:46 chilkings 阅读(26) 评论(0) 推荐(0) 编辑