类模板实例化出的对象,作为参数向函数传参的方式:三种:
#include<iostream> using namespace std; #include<string> template<typename T1, typename 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; } private: T1 m_Name; T2 m_Age; }; // 1、指定出入类型: void printPerson1(Person<string, int>& p) // 类模板的实例化对象p 作为参数,传入函数中。 { p.showPerson(); } void test01() { Person<string, int> p1("孙悟空", 1000); printPerson1(p1); } // 2、参数模板化 template<typename T1, typename T2> void printPerson2(Person<T1, T2>& p) // 函数传入参数中,参数采用模板参数。不具体。 { p.showPerson(); cout << "T1类型推测为:" << typeid(T1).name() << endl; cout << "T2类型推测为:" << typeid(T2).name() << endl; } void test02() { Person<string, int> p2("猪八戒", 999); printPerson2(p2); } // 3、整个类模板化 template<typename T> void printPerson3(T& p) { p.showPerson(); cout << "T的类型推断为:" << typeid(T).name() << endl; } void test03() { Person<string, int>p3("唐僧", 30); printPerson3(p3); } int main() { test01(); test02(); test03(); system("pause"); return 0; }
总结:
比较广泛的用法:指定传入类型。