码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p181

时间:2020-02-04 15:43:59      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:ace   amp   out   using   turn   info   访问   函数   mic   

源程序:

#include<iostream>
using namespace std;

class another;
class Base
{
private:
float x;
public:
void print(const another &K);
};
class Derived:public Base
{
private:
float y;
};

class another
{
private:
int aaa;
public:
another()
{
aaa=100;
}
friend void Base::print(const another &K); //基类的成员函数声明为本类的友元
};

void Base::print(const another &K)
{
cout<<"Base:"<<K.aaa<<endl; //可以访问私有成员变量
}

int main()
{
Base a;
Derived d;
another ano;
a.print(ano);
d.print(ano);
return 0;
}

运行结果:

技术图片

 

自考新教材-p181

标签:ace   amp   out   using   turn   info   访问   函数   mic   

原文地址:https://www.cnblogs.com/duanqibo/p/12259418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!