类的继承方式

一个派生类可以同时有多个基类,这种情况称为多重继承,派生类只有一个
基类, 称为单继承。下面从单继承讲起。
继承方式




1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
| #define _CRT_SECURE_NO_WARNINGS #include <iostream>
using namespace std;
class Parent { public: int pub; protected: int pro; private: int pri; };
class Child :public Parent { void func() { pro; } };
class Child2 : protected Parent { void func() { pub; } };
class Child3 : private Parent { void func() { pub; pro; } };
class SubChild3 : public Child3 {
void func() { pub; pro; } };
int main(void) { Parent p; p.pub;
Child c; c.pub; Child c;
Child2 c2; Child3 c3; c3.pub; c3.pro;
return 0; }
|