ex217.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream.h>
  2. class Base1 //定义基类Base1
  3. {
  4.   protected:
  5. int m_B1; //定义基类的数据成员m_B1
  6.   public:
  7. void Setm_B1(int x) //定义基类的成员函数Setm_B1
  8. {
  9. m_B1=x;
  10. }
  11. };
  12. class Base2 //定义基类Base2
  13. {
  14.   protected:
  15. int m_B2; //定义基类的数据成员m_B2
  16.   public:
  17. void Setm_B2(int x) //定义基类的成员函数Setm_B2
  18. {
  19. m_B2=x;
  20. }
  21. };
  22. class MultiDerived:public Base1,public Base2
  23. { //定义基类Base1和Base2的派生类MultiDerived
  24.   public:
  25. void GetB1B2(void) //存取继承自基类Base1和Base2中的数据成员
  26. {
  27. int Result;
  28. Result=m_B1+m_B2;
  29. cout<<"m_B1+m_B2="<<Result<<endl;
  30. }
  31. };
  32. void main()
  33. {
  34. MultiDerived M; //定义派生类MultiDerived的对象
  35. M.Setm_B1(15);//调用继承自基类Base1中的成员函数Setm_B1
  36. M.Setm_B2(35);//调用继承自基类Base2中的成员函数Setm_B2
  37. M.GetB1B2(); //调用派生类中自定义的成员函数GetB1B2
  38. }