#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
#include <string>// 写法2:
// template<class T1, class T2>
// class Students12;// 要提前用到Students12,需要在前面先让编译器见过Students12才可以
// template<class T1, class T2>
// void printStu(Students12<T1, T2>& stu); // 此处不要加<> ,只让编译器提前见过这个代码,后续才能正常运行// 3、类中声明友元,类外定义(让见过的代码和定义代码写在一起)
template<class T1, class T2>
class Students12;template<class T1, class T2>
void printStu(Students12<T1, T2>& stu) {cout << "姓名:" << stu.m_name << endl;cout << "年龄:" << stu.m_age << endl;
}// 此三种方法,尽量使用第一种。其他两种不太推荐使用template<class T1,class T2>
class Students12 {
public:Students12(T1 name,T2 age) {this->m_name = name;this->m_age = age;}//1、类中友元函数,在类外调用的时候,直接按照普通函数的调用方式即可,不用实例化后再调用//friend void printStu(Students12<T1, T2>& stu) {// cout << "姓名:" << stu.m_name << endl;// cout << "年龄:" << stu.m_age << endl;//}// 2、类中声明友元。类外定义,需要设置空模板参数列表// friend void printStu<>(Students12<T1, T2>& stu); // 3、类中声明友元,类外定义(让见过的代码和定义代码写在一起)friend void printStu<>(Students12<T1, T2>& stu);private:T1 m_name;T2 m_age;
};//2、类外定义,函数模板
//template<class T1, class T2>
//void printStu(Students12<T1, T2>& stu) {
// cout << "姓名:" << stu.m_name << endl;
// cout << "年龄:" << stu.m_age << endl;
//}int main(void)
{Students12<string, int> stu("张三",200);//stu.printStu(stu);// 类中友元函数,在类外调用的时候,直接按照普通函数的调用方式即可,不用实例化后再调用printStu(stu);return EXIT_SUCCESS;
}