C++ 提高教程 -模板 类模板对象做函数参数
Posted 行码阁119
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 -模板 类模板对象做函数参数相关的知识,希望对你有一定的参考价值。
# include<iostream>
# include<string>
using namespace std;
//一共有三种传入方式
template<class T1, class T2>
class Person
{
public:
Person(T1 name, T2 age)
{
this->m_Name = name;
this->m_Age = age;
}
void showPerson()
{
cout << "姓名:" << this->m_Name << " 年龄:" << this->m_Age << endl;
}
T1 m_Name;
T2 m_Age;
};
//1、指定传入的类型 --直接显示传入的数据类型
void printPerson1(Person<string, int>&p)
{
p.showPerson();
}
void test01()
{
Person<string,int>p("孙悟空",999);
printPerson1(p);
}
//2、参数模板化
template<class T1,class T2>
void printPerson2(Person<T1, T2>& p)
{
p.showPerson()
以上是关于C++ 提高教程 -模板 类模板对象做函数参数的主要内容,如果未能解决你的问题,请参考以下文章