信管14:多重继承二义性示例代码

     下面程序代码,在执行时,会产生二义性错误,分析为什么会产生二义性,如何修改程序来解决二义性问题?
#include<iostream>
#include<string>
using namespace std;

class Base {
protected:
  int a;
public:
   Base( )
   { a=5;}
  void base_print()
  { cout<<"Base a="<<a<<endl;} 
};

class B1:public Base{
 public:
    B1( )
	{ a=a+10;}

	void derive_print1()
	{cout<<"derive one a="<<a<<endl;}
};

class B2:public Base{
  public:
    B2( )
	{ a=a+20;}
	void derive_print2()
	{cout<<"derive two a="<<a<<endl;}
	
};

class D:public B1,public B2{
  public: 
	  D( ){a+=30;}                             //   {B2::a+=30;}                                                          
  void  print()
  { cout<<"a="<<a<<endl;                           //cout<<"from B1 a="<<B1::a<<endl;  //cout<<"B2 a="<<B2::a<<endl;

  }                            
};

int  main( ) 
{ D  obj; 
  obj.B1::base_print();                           //obj.B1::base_print();
  obj.B2::base_print();   

  obj.derive_print1();
  obj.derive_print2();

  obj.print();

  system("pause");
  return  0;  

}

分析运行程序,分析错误产生原因。并将错误代码用后面注释来修改替换,运行分析程序。
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值