摘要: 函数模板概念:用函数或类,不具体指定其类内部的类型和函数的形参类型,用一个虚拟的类型来代表 #创建交换两个变量的函数模板 template <typename anytype> void Swap(anytype &a,anytype &b) { anytype tmp; tmp = a; a = 阅读全文
posted @ 2023-09-02 18:21 ddup123 阅读(25) 评论(0) 推荐(0)