#include <iostream>
#include <string>
using namespace std;
//类模板可以直接继承类模板,类型必须传递
//普通类继承类模板,需要明确类型实例化类模板
//类模板继承普通类,常规的操作方式
//类模板当做普通类,需要模板参数对类进行实例化
template<class T>
class myclass
{
public:
T x;
myclass(T t):x(t)
{
}
virtual void print()=0;//定义一个接口
};
template<class T>
class newclass : public myclass<T>//继承必须明确类型
{
public:
T y;
newclass(T t1, T t2): myclass<T>(t1),y(t2)
{
}
void print()
{
cout << this->x << " " << y << endl;
}
};
int main()
{
// cout << "Hello World!" << endl;
myclass<int> *p = new newclass<int>(10,9);//父类的指针调用子类的对象
p->print();
return 0;
}