自考新教材-p181

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p181相关的知识,希望对你有一定的参考价值。

源程序:

#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的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p156

自考新教材-p161

自考新教材-p159

自考新教材-p286

自考新教材-p285

自考新教材--p179