摘要: 类模板使用实例 #include <iostream> using namespace std; template<typename T> class A { public: A(T t):a(t){} T getA() { return a; } private: T a; }; int main 阅读全文
posted @ 2020-05-26 22:54 xd_xumaomao 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 函数模板的实例 #include <iostream> using namespace std; template<typename T> void myswap(T &a, T &b) { T t; t = a; a = b; b = t; } int main() { int x = 1; in 阅读全文
posted @ 2020-05-26 21:34 xd_xumaomao 阅读(189) 评论(0) 推荐(0) 编辑