C++ 提高教程 模板-类模板
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 模板-类模板相关的知识,希望对你有一定的参考价值。
# include<iostream>
# include<string>
using namespace std;
template<class NameType, class AgeType>
class Person
{
public:
Person(NameType name, AgeType age)
{
this->m_Name = name;
this->m_Age = age;
}
NameType m_Name;
AgeType m_Age;
void showPerson()
{
cout << "m_Name:" << this->m_Name << "m_Age:" << this->m_Age << endl;
}
};
void test01()
{
Person<string, int>p1("孙悟空", 999);
p1.showPerson();
}
int main()
{
test01();
system("pause");
return 0;
}
以上是关于C++ 提高教程 模板-类模板的主要内容,如果未能解决你的问题,请参考以下文章