加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
7 类模板与友元.cpp 580 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sincere Xin 提交于 2022-06-02 01:58 . 部分C++基础
#include<iostream>
#include<string>
using namespace std;
//类模板配合友元函数的类内和类外实现访问私有属性
//全局函数的类内实现——直接在类内声明友元即可!!!!!
template<class t1,class t2>
class person
{
//全局函数类内实现
friend void show(person<t1, t2>&p)//通过友元访问私有属性
{
cout << p.name << p.age << endl;
}
public:
person(t1 name, t2 age)
{
this->name = name;
this->age = age;
}
private:
t1 name;
t2 age;
};
void test70()
{
person<string, int>p("Sincereh", 24);
show(p);
}
void main()
{
test70();
system("pause");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化