赞
踩
目录
- class Person
- {
- public:
- void Print()
- {
- cout << "name:" << _name << endl;
- cout << "age:" << _age << endl;
- }
- protected:
- string _name = "peter"; // 姓名
- int _age = 18; // 年龄
- };
- // 继承后父类的Person的成员(成员函数+成员变量)都会变成子类的一部分。这里体现出了
- //Student和Teacher复用了Person的成员。我们可以使用监视窗口查看Student和Teacher对象,可
- //以看到变量的复用。调用Print可以看到成员函数的复用。
- class Student : public Person
- {
- protected:
- int _stuid; // 学号
- };
-
- class Teacher : public Person
- {
- protected:
- int _jobid; // 工号
- };
- int main()
- {
- Student s;
- Teacher t;
- s.Print();
- t.Print();
- return 0;
- }
定义格式:
继承关系和访问限定符:
继承基类成员访问形式的变化:
类成员/继承方式 | public继承 | protected继承 | private继承 |
基类的public成员 | 派生类的public成员 | 派生类的protected成员 | 派生类的private成员 |
基类的protected成员 | 派生类的protected成员 | 派生类的protected成员 | 派生类的private成员 |
基类的private成员 | 在派生类中不可见 | 在派生类中不可见 | 在派生类中不可见 |
规律:根据基类中成员访问限定符(私有private,保护protected,公有public)和基类继承在派生类中的继承方式,那个限制范围大选哪个(私有private限制范围最大)
总结:
● 派生类对象 可以赋值给 基类的对象 / 基类的指针 / 基类的引用 。这里有个形象的说法叫切片 或者切割。寓意把派生类中父类那部分切来赋值过去。● 基类对象不能直接赋值给派生类对象。
- class Person
- {
- protected:
- string _name; // 姓名
- string _sex; // 性别
- int _age; // 年龄
- };
- class Student : public Person
- {
- public:
- int _No; // 学号
- };
- void Test()
- {
- Student sobj;
- // 1.子类对象可以赋值给父类对象/指针/引用
- Person pobj = sobj;
- Person* pp = &sobj;
- Person& rp = sobj;
-
- //2.基类对象不能赋值给派生类对象
- sobj = pobj;
- }
- // Student的_num和Person的_num构成隐藏关系,可以看出这样代码虽然能跑,但是非常容易混淆
- class Person
- {
- protected:
- string _name = "小李子"; // 姓名
- int _num = 111; // 身份证号
- };
- class Student : public Person
- {
- public:
- void Print()
- {
- cout << " 姓名:" << _name << endl;
- cout << " 身份证号:" << Person::_num << endl;
- cout << " 学号:" << _num << endl;
- }
- protected:
- int _num = 999; // 学号
- };
- void Test()
- {
- Student s1;
- s1.Print();
- };
- // B中的fun和A中的fun不是构成重载,因为不是在同一作用域
- // B中的fun和A中的fun构成隐藏,成员函数满足函数名相同就构成隐藏。
- class A
- {
- public:
- void fun()
- {
- cout << "func()" << endl;
- }
- };
- class B : public A
- {
- public:
- void fun(int i)
- {
- A::fun();
- cout << "func(int i)->" << i << endl;
- }
- };
- void Test()
- {
- B b;
- b.fun(10);
- };
使用及实现代码:
- class Person
- {
- public:
- Person(const char* name = "peter")
- : _name(name)
- {
- cout << "Person()" << endl;
- }
-
- Person(const Person& p)
- : _name(p._name)
- {
- cout << "Person(const Person& p)" << endl;
- }
-
- Person& operator=(const Person& p)
- {
- cout << "Person operator=(const Person& p)" << endl;
- if (this != &p)
- _name = p._name;
-
- return *this;
- }
-
- ~Person()
- {
- cout << "~Person()" << endl;
- }
- protected:
- string _name; // 姓名
- };
- class Student : public Person
- {
- public:
- Student(const char* name, int num)
- : Person(name)//像定义匿名对象一样调用基类的构造函数
- , _num(num)
- {
- cout << "Student()" << endl;
- }
-
- Student(const Student& s)
- : Person(s)
- , _num(s._num)
- {
- cout << "Student(const Student& s)" << endl;
- }
-
- Student& operator = (const Student& s)
- {
- cout << "Student& operator= (const Student& s)" << endl;
- if (this != &s)//!!!
- {
- Person::operator =(s);//调用形式 重要
- _num = s._num;
- }
- return *this;
- }
-
- ~Student()
- {
- cout << "~Student()" << endl;
- }
- protected:
- int _num; //学号
- };
- void Test()
- {
- Student s1("jack", 18);
- Student s2(s1);
- Student s3("rose", 17);
- s1 = s3;
- }
- class Student;
- class Person
- {
- public:
- friend void Display(const Person& p, const Student& s);
- protected:
- string _name; // 姓名
- };
- class Student : public Person
- {
- protected:
- int _stuNum; // 学号
- };
- void Display(const Person& p, const Student& s)
- {
- cout << p._name << endl;
- cout << s._stuNum << endl;
- }
- void main()
- {
- Person p;
- Student s;
- Display(p, s);
- }
- class Person
- {
- public:
- Person() { ++_count; }
- protected:
- string _name; // 姓名
- public:
- static int _count; // 统计人的个数。
- };
- int Person::_count = 0;
- class Student : public Person
- {
- protected:
- int _stuNum; // 学号
- };
- class Graduate : public Student
- {
- protected:
- string _seminarCourse; // 研究科目
- };
- void TestPerson()
- {
- Student s1;
- Student s2;
- Student s3;
- Graduate s4;
- cout << " 人数 :" << Person::_count << endl;
- Student::_count = 0;
- cout << " 人数 :" << Person::_count << endl;
- }
- class Person
- {
- public:
- string _name; // 姓名
- };
- class Student : public Person
- {
- protected:
- int _num; //学号
- };
- class Teacher : public Person
- {
- protected:
- int _id; // 职工编号
- };
- class Assistant : public Student, public Teacher
- {
- protected:
- string _majorCourse; // 主修课程
- };
- void Test()
- {
- // 这样会有二义性无法明确知道访问的是哪一个
- Assistant a;
- a._name = "peter";
- // 需要显示指定访问哪个父类的成员可以解决二义性问题,但是数据冗余问题无法解决
- a.Student::_name = "xxx";
- a.Teacher::_name = "yyy";
- }
- class Person
- {
- public:
- string _name; // 姓名
- };
- class Student : virtual public Person
- {
- protected:
- int _num; //学号
- };
- class Teacher : virtual public Person
- {
- protected:
- int _id; // 职工编号
- };
- class Assistant : public Student, public Teacher
- {
- protected:
- string _majorCourse; // 主修课程
- };
- void Test()
- {
- Assistant a;
- a._name = "peter";
- }
- class A
- {
- public:
- int _a;
- };
- // class B : public A
- class B : virtual public A
- {
- public:
- int _b;
- };
- // class C : public A
- class C : virtual public A
- {
- public:
- int _c;
- };
- class D : public B, public C
- {
- public:
- int _d;
- };
- int main()
- {
- D d;
- d.B::_a = 1;
- d.C::_a = 2;
- d._b = 3;
- d._c = 4;
- d._d = 5;
- return 0;
- }
// 有童鞋会有疑问为什么D中B和C部分要去找属于自己的A?那么大家看看当下面的赋值发生时,d是不是要去找出B / C成员中的A才能赋值过去?
D d;
B b = d;
C c = d;
● 继承允许你根据基类的实现来定义派生类的实现。这种通过生成派生类的复用通常被称为白箱复用(white-box reuse)。术语“白箱”是相对可视性而言:在继承方式中,基类的内部细节对子类可见 。继承一定程度破坏了基类的封装,基类的改变,对派生类有很大的影响。派生类和基类间的依赖关系很强,耦合度高。
● 对象组合是类继承之外的另一种复用选择。新的更复杂的功能可以通过组装或组合对象来获得。对象组合要求被组合的对象具有良好定义的接口。这种复用风格被称为黑箱复用(black-box reuse),因为对象的内部细节是不可见的。对象只以“黑箱”的形式出现。组合类之间没有很强的依赖关系,耦合度低。优先使用对象组合有助于你保持每个类被封装。
● 实际尽量多去用组合。组合的耦合度低,代码维护性好。不过继承也有用武之地的,有些关系就适合继承那就用继承,另外要实现多态,也必须要继承。类之间的关系可以用继承,可以用组合,就用组合。
- // Car和BMW Car和Benz构成is-a的关系
- class Car {
- protected:
- string _colour = "白色"; // 颜色
- string _num = "陕ABIT00"; // 车牌号
- };
-
- class BMW : public Car {
- public:
- void Drive() { cout << "好开-操控" << endl; }
- };
-
- class Benz : public Car {
- public:
- void Drive() { cout << "好坐-舒适" << endl; }
- };
-
- // Tire和Car构成has-a的关系
-
- class Tire {
- protected:
- string _brand = "Michelin"; // 品牌
- size_t _size = 17; // 尺寸
-
- };
-
- class Car {
- protected:
- string _colour = "白色"; // 颜色
- string _num = "陕ABIT00"; // 车牌号
- Tire _t; // 轮胎
- };
如果以上内容对你有帮助不妨点赞支持一下,以后还会分享更多编程知识,我们一起进步。
最后我想讲的是,据说点赞的都能找到漂亮女朋友❤
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。