#include<iostream>
#include<string>
using namespace std;
//类模板中成员函数的创建时机
//类模板中的成员函数在调用时才去创造
class person1
{
public:
void showperson1()
{
cout << "showperson1" << endl;
}
};
class person2
{
public:
void showperson2()
{
cout << "showperson2" << endl;
}
};
template<class T>
class MyClass
{
public:
T obj;
//类模板中的成员函数
void func1()
{
obj.showperson1();
}
void func2()
{
obj.showperson2();
}
};
void test01()
{
MyClass<person1>m;
m.func1();
//m.func2();
}
void test02()
{
}
int main()
{
test01();
test02();
system("pause");//按任意键继续
return 0;//关闭程序
}
10模板-类模板中成员函数创建时机
最新推荐文章于 2024-10-31 18:26:46 发布