C++中基类对象无法赋给派生类对象,那么怎样才能将只将基类中的两个成员数据赋给派生类相应的成员数据?

//debug.cpp#include<iostream>usingnamespacestd;#include"animal.h"#include"lion.h"#inc... //debug.cpp
#include <iostream>
using namespace std;

#include "animal.h"
#include "lion.h"
#include "dog.h"

int main()
{
Animal a1(0,0);
Dog d1(60, 120, "Fido");
Dog d2(0,0);
Lion lion1(45, 300);

a1.print();
d1.Print();
d2.Print();
lion1.Print();

a1=d1;
cout<<"Animal 1 now has the same height and weight"
<< "as dog 1\n";
a1.print();

d2=a1;
cout<<"Dog 2 now has the same height and weight"
<< "as animal 1\n";
d2.Print();

return 0;
}
d2=a1;这一句,将60,120给d2
展开
 我来答
风若远去何人留
2014-05-27 · 知道合伙人互联网行家
风若远去何人留
知道合伙人互联网行家
采纳数:20412 获赞数:450108
专业C/C++软件开发

向TA提问 私信TA
展开全部
Animal是基类?

试试这样
*((Animal *)&d2) = a1;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式