C++类中调用其他类的数据成员

比如我有类A和BA想调用B中的数据成员school怎么写?... 比如我有类A和B
A想调用B中的数据成员school怎么写?
展开
 我来答
匿名用户
2013-11-28
展开全部
只需要在A的构造函数中写
A():_B(_school)
在A后面private加上
B _B
就可以嵌入了
追问
没看懂,能仔细说说嘛
追答
//你看看这个就懂了
#include <iostream>

class Matter
{
public:
Matter(int id)
:_identifier(id)
{
std::cout<<" Matter for "<<_identifier<<" created\n";
}
~Matter()
{
std::cout<<" Matter for "<<_identifier<<" annihilated\n";
}
private:
const int _identifier;
};

class World
{
public:
World(int id)
: _identifier(id),
  _matter(_identifier)//Initializing the embedded frame
{
std::cout<<" Hello from world "<<_identifier<<".\n";
}

~World()
{
std::cout<<" Goodbye from world "<<_identifier<<".\n";
}
private:
const int     _identifier;
const Matter  _matter; // Embedded object of Matter type
};

World TheUniverse(1);

int main()
{
World smallWorld(2);
}
zsh6364931
2013-11-28 · TA获得超过329个赞
知道小有建树答主
回答量:339
采纳率:0%
帮助的人:204万
展开全部
在B中定义友元类A试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
曹礼业亘
2020-02-01 · TA获得超过1075个赞
知道小有建树答主
回答量:1867
采纳率:89%
帮助的人:10.4万
展开全部
可以访问非const数据成员,但是不能修改,也不能调用非const成员函数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式