C++ 类模版
摘要:
有时,有两个或多个类,其功能是相同的,仅仅是数据类型不同,如下面语句声明了一个类: 单个类模板语法 #include "iostream"using namespace std; template<typename T>class A {public: A(T t) { this->t = t; } 阅读全文
posted @ 2020-02-12 10:21 wu.g.q 阅读(147) 评论(0) 推荐(0) 编辑
posted @ 2020-02-12 10:21 wu.g.q 阅读(147) 评论(0) 推荐(0) 编辑
posted @ 2020-02-12 09:48 wu.g.q 阅读(227) 评论(0) 推荐(0) 编辑