标签:span c++ 类 src this 一个 namespace public img use
有时,有两个或多个类,其功能是相同的,仅仅是数据类型不同,如下面语句声明了一个类:
单个类模板语法
#include "iostream"
using namespace std;
template<typename T>
class A
{
public:
A(T t)
{
this->t = t;
}
T &getT()
{
return t;
}
protected:
public:
T t;
};
void main()
{
A<int> a(100);
// a.getT();
cout << a.t << endl;
system("pause");
return ;
}
继承中的类模板语法
标签:span c++ 类 src this 一个 namespace public img use
原文地址:https://www.cnblogs.com/wuguoqiang/p/12298009.html