ex217.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:
书籍源码
开发平台:
Visual C++
- #include <iostream.h>
- class Base1 //定义基类Base1
- {
- protected:
- int m_B1; //定义基类的数据成员m_B1
- public:
- void Setm_B1(int x) //定义基类的成员函数Setm_B1
- {
- m_B1=x;
- }
- };
- class Base2 //定义基类Base2
- {
- protected:
- int m_B2; //定义基类的数据成员m_B2
- public:
- void Setm_B2(int x) //定义基类的成员函数Setm_B2
- {
- m_B2=x;
- }
- };
- class MultiDerived:public Base1,public Base2
- { //定义基类Base1和Base2的派生类MultiDerived
- public:
- void GetB1B2(void) //存取继承自基类Base1和Base2中的数据成员
- {
- int Result;
- Result=m_B1+m_B2;
- cout<<"m_B1+m_B2="<<Result<<endl;
- }
- };
- void main()
- {
- MultiDerived M; //定义派生类MultiDerived的对象
- M.Setm_B1(15);//调用继承自基类Base1中的成员函数Setm_B1
- M.Setm_B2(35);//调用继承自基类Base2中的成员函数Setm_B2
- M.GetB1B2(); //调用派生类中自定义的成员函数GetB1B2
- }