-
Notifications
You must be signed in to change notification settings - Fork 3
/
37_类与对象_继承_01.cpp
119 lines (99 loc) · 1.89 KB
/
37_类与对象_继承_01.cpp
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <iostream>
using namespace std;
// 继承好处:减少重复代码
// 语法: class 子类 : 继承方式 父类
// 继承方式:
// - 公共继承
// - 保护继承
// - 私有继承
// 公共继承
class Base1
{
public:
int m_A;
protected:
int m_B;
private:
int m_C;
};
class Child1 : public Base1
{
public:
void func()
{
m_A = 10; // 父类中的公共权限成员到子类中依然是公共权限
m_B = 10; // 父类中的保护权限成员到子类中依然是保护权限
// m_C = 10; // 父类中的私有权限成员子类访问不到
}
};
void test01()
{
Child1 c1;
c1.m_A = 100;
// c1.m_B = 100; // 保护权限,类外访问不到
}
// 保护继承
class Base2
{
public:
int m_A;
protected:
int m_B;
private:
int m_C;
};
class Child2 : protected Base2
{
public:
void func()
{
m_A = 100; // 父类中公共成员,到子类中变为保护权限
m_B = 100; // 父类中保护成员,到子类中变为保护权限
// m_C = 100; // 父类中的私有权限成员子类访问不到
}
};
void test02()
{
Child2 c2;
// c2.m_A = 1000; // 在 Child2 中 m_A 变为保护权限,类外访问不到
// c2.m_B = 1000;
}
// 私有继承
class Base3
{
public:
int m_A;
protected:
int m_B;
private:
int m_C;
};
class Child3 : private Base3
{
public:
void func()
{
m_A = 100; // 父类中公共成员,到子类中变为私有成员
m_B = 100; // 父类中保护成员,到子类中变为私有成员
// m_C = 100; // 父类中的私有权限成员子类访问不到
}
};
void test03()
{
Child3 c3;
// c3.m_A = 1000; // 私有权限,类外访问不到
// c3.m_B = 1000;
}
class CChild : public Child3
{
public:
void func()
{
// m_A = 1000;
// m_B = 1000;
}
};
int main()
{
return 0;
}