#include <iostream>
using namespace std;
#include<string>;
#include<fstream>
#include<vector>
#include<algorithm>//标准算法
template<class NameType,class AgeType=int>
class Person
{
public:
Person(NameType name, AgeType age)
{
this->m_Age = age;
this->m_Name = name;
}
void showPerson()
{
cout << "name:" << this->m_Name << "age=" << this->m_Age;
}
NameType m_Name;
AgeType m_Age;
};
//类模板没有自动类型推导的使用方式
void test01()
{
//Person p("孙悟空",1000);错误,不能自动推导
Person<string, int>p("孙悟空", 1000);
p.showPerson();
}
//类模板在模板参数列表中可以有默认参数
void test02()
{
Person<string>p("猪八戒", 999);
p.showPerson();
}
int main()
{
test01();
test02();
}
类模板
最新推荐文章于 2024-08-31 00:01:13 发布