• c++继承


    目录

    一、继承的概念

    二、基类和派生类对象赋值转换

    三、继承中的作用域

    四、派生类的默认成员函数

    (一)派生类的构造函数必须调用基类的构造函数初始化基类的那一部分成员。如果基类没有默认的构造函数,则必须在派生类构造函数的初始化列表阶段显示调用

    (二)派生类的拷贝构造函数必须调用基类的拷贝构造完成基类的拷贝初始化

    (三)派生类的operator=必须要调用基类的operator=完成基类的复制

    (四)派生类的析构函数会在被调用完成后自动调用基类的析构函数清理基类成员。因为这样才能保证派生类对象先清理派生类成员再清理基类成员的顺序

    五、继承与友元、静态成员

    六、复杂的菱形继承及菱形虚拟继承

    (一)菱形继承的问题

    (二)解决菱形继承的二义性和数据冗余

    (三)虚拟继承解决数据冗余和二义性的原理

    1. 不采用虚拟继承的时候 

    2. 采用虚拟继承的时候


    一、继承的概念

    • 继承(inheritance)机制是面向对象程序设计使代码可以复用的最重要的手段,它允许程序员在保持原有类特性的基础上进行扩展,增加功能,这样产生新的类,称派生类。继承呈现了面向对象程序设计的层次结构,体现了由简单到复杂的认知过程。以前我们接触的复用都是函数复用,继承是类设计层次的复用

     

    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. void Print()
    7. {
    8. cout << "name:" << _name << endl;
    9. cout << "age:" << _age << endl;
    10. }
    11. protected:
    12. string _name = "peter"; // 姓名
    13. int _age = 18; // 年龄
    14. };
    15. // 继承后父类的Person的成员(成员函数+成员变量)都会变成子类的一部分。
    16. // 这里体现出了Student和Teacher复用了Person的成员。下面我们使用监视窗口查看Student和Teacher对象,可
    17. //以看到变量的复用。调用Print可以看到成员函数的复用。
    18. class Student : public Person
    19. {
    20. protected:
    21. int _stuid; // 学号
    22. };
    23. class Teacher : public Person
    24. {
    25. protected:
    26. int _jobid; // 工号
    27. };
    28. int main()
    29. {
    30. Student s;
    31. Teacher t;
    32. s.Print();
    33. t.Print();
    34. return 0;
    35. }

    二、基类和派生类对象赋值转换

    • 派生类对象 可以赋值给 基类的对象 / 基类的指针 / 基类的引用。这里有个形象的说法叫切片或者切割。寓意把派生类中父类那部分切来赋值过去。
    • 基类对象不能赋值给派生类对象。
    • 基类的指针或者引用可以通过强制类型转换赋值给派生类的指针或者引用。但是必须是基类的指针是指向派生类对象时才是安全的。这里基类如果是多态类型,可以使用RTTI(Run-
    • Time Type Information)的dynamic_cast 来进行识别后进行安全转换。(ps:这个我们后面再讲解,这里先了解一下)

     

    三、继承中的作用域

    • 在继承体系中基类派生类都有独立的作用域
    • 子类和父类中有同名成员,子类成员将屏蔽父类对同名成员的直接访问,这种情况叫隐藏,也叫重定义。(在子类成员函数中,可以使用 基类::基类成员 显示访问)
    • 需要注意的是如果是成员函数的隐藏,只需要函数名相同就构成隐藏
    • 注意在实际中在继承体系里面最好不要定义同名的成员
    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. protected:
    6. string _name = "peter"; // 姓名
    7. int _num = 100; // 身份证号
    8. };
    9. class Student : public Person
    10. {
    11. public:
    12. void Print()
    13. {
    14. cout << "姓名:" << _name << endl;
    15. cout << "身份证号:" << _num;
    16. }
    17. protected:
    18. int _num = 999; // 身份证号
    19. };
    20. int main()
    21. {
    22. Student s;
    23. s.Print();
    24. return 0;
    25. }

    1. #include
    2. using namespace std;
    3. // B中的fun和A中的fun不是构成重载,因为不是在同一作用域
    4. // B中的fun和A中的fun构成隐藏,成员函数满足函数名相同就构成隐藏。
    5. class A
    6. {
    7. public:
    8. void fun()
    9. {
    10. cout << "func()" << endl;
    11. }
    12. };
    13. class B : public A
    14. {
    15. public:
    16. void fun(int i)
    17. {
    18. cout << "func(int i)->" << i << endl;
    19. }
    20. };
    21. int main()
    22. {
    23. B b;
    24. b.fun(10);
    25. b.A::fun();//指定作用域
    26. return 0;
    27. }

    四、派生类的默认成员函数

    6个默认成员函数,在派生类中,这几个成员函数是如何生成的呢?

    (一)派生类的构造函数必须调用基类的构造函数初始化基类的那一部分成员。如果基类没有默认的构造函数,则必须在派生类构造函数的初始化列表阶段显示调用

    • 派生类对象初始化先调用基类构造再调派生类构造 
    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. Person(const char* name = "peter")
    7. : _name(name)
    8. {
    9. cout << "Person()" << endl;
    10. }
    11. protected:
    12. string _name; // 姓名
    13. };
    14. class Student : public Person
    15. {
    16. public:
    17. Student(const char* name, int id)
    18. : Person(name)
    19. ,_id(id)
    20. {
    21. cout << "Student(const char* name, int id)" << endl;
    22. }
    23. protected:
    24. int _id;
    25. };
    26. int main()
    27. {
    28. Student s1("张三", 18);
    29. return 0;
    30. }

    (二)派生类的拷贝构造函数必须调用基类的拷贝构造完成基类的拷贝初始化

    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. Person(const char* name = "peter")//构造函数
    7. : _name(name)
    8. {
    9. cout << "Person()" << endl;
    10. }
    11. Person(const Person& p)//拷贝构造函数
    12. : _name(p._name)
    13. {
    14. cout << "Person(const Person& p)" << endl;
    15. }
    16. protected:
    17. string _name; // 姓名
    18. };
    19. class Student : public Person
    20. {
    21. public:
    22. Student(const char* name, int id)//构造函数
    23. : Person(name)
    24. ,_id(id)
    25. {
    26. cout << "Student(const char* name, int id)" << endl;
    27. }
    28. Student(const Student& s)//拷贝构造函数
    29. :Person(s)
    30. , _id(s._id)
    31. {
    32. cout << "Student(const Student& s)" << endl;
    33. }
    34. protected:
    35. int _id;
    36. };
    37. int main()
    38. {
    39. Student s1("张三", 18);
    40. Student s2(s1);
    41. return 0;
    42. }

    (三)派生类的operator=必须要调用基类的operator=完成基类的复制

    (四)派生类的析构函数会在被调用完成后自动调用基类的析构函数清理基类成员。因为这样才能保证派生类对象先清理派生类成员再清理基类成员的顺序

    • 派生类对象析构清理先调用派生类析构再调基类的析构
    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. Person(const char* name = "peter")//构造函数
    7. : _name(name)
    8. {
    9. cout << "Person()" << endl;
    10. }
    11. ~Person()
    12. {
    13. cout << "~Person()" << endl;
    14. }
    15. protected:
    16. string _name; // 姓名
    17. };
    18. class Student : public Person
    19. {
    20. public:
    21. Student(const char* name, int id)//构造函数
    22. : Person(name)
    23. ,_id(id)
    24. {
    25. cout << "Student(const char* name, int id)" << endl;
    26. }
    27. ~Student()
    28. {
    29. cout << "~Student()" << endl;
    30. }
    31. protected:
    32. int _id;
    33. };
    34. int main()
    35. {
    36. Student s1("张三", 18);
    37. return 0;
    38. }

     

    五、继承与友元、静态成员

    • 友元关系不能继承,也就是说基类友元不能访问子类私有和保护成员
    • 基类定义了static静态成员,则整个继承体系里面只有一个这样的成员。无论派生出多少个子
      类,都只有一个static成员实例 
    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. Person()
    7. {
    8. ++_count;
    9. }
    10. protected:
    11. string _name; // 姓名
    12. public:
    13. static int _count; // 统计人的个数。
    14. };
    15. int Person::_count = 0;
    16. class Student : public Person
    17. {
    18. protected:
    19. int _stuNum; // 学号
    20. };
    21. int main()
    22. {
    23. cout << &Person::_count << endl;
    24. cout << &Student::_count << endl;
    25. return 0;
    26. }

    六、复杂的菱形继承及菱形虚拟继承

    • 单继承:一个子类只有一个直接父类时称这个继承关系为单继承 

    • 多继承:一个子类有两个或以上直接父类时称这个继承关系为多继承 

    • 菱形继承:菱形继承是多继承的一种特殊情况

    (一)菱形继承的问题

    • 菱形继承的问题:从下面的对象成员模型构造,可以看出菱形继承有数据冗余二义性的问题。
    • 在Assistant的对象中Person成员有两份 

     

    1. #include
    2. using namespace std;
    3. class Person
    4. {
    5. public:
    6. string _name;//姓名
    7. };
    8. class Student :public Person
    9. {
    10. protected:
    11. int _num;//学号
    12. };
    13. class Teacher :public Person
    14. {
    15. protected:
    16. int _id;//职工编号
    17. };
    18. class Assistant :public Student, public Teacher//先继承Student,再继承Teacher
    19. {
    20. protected:
    21. string _majorCourse; // 主修课程
    22. };
    23. int main()
    24. {
    25. Assistant a;
    26. //a._name = "李明";//错误,不知道访问哪个类中的_name
    27. //正确,显示指定访问哪个父类的成员
    28. a.Student::_name = "张三";
    29. a.Teacher::_name = "李四";
    30. return 0;
    31. }

     

     

    (二)解决菱形继承的二义性和数据冗余

    采用虚拟继承。如上面的继承关系,在Student和Teacher的继承Person时使用虚拟继承,即可解决问题。需要注意的是,虚拟继承不要在其他地方去使用。

     

    1. class Student :virtual public Person
    2. {
    3. protected:
    4. int _num;//学号
    5. };
    6. class Teacher :virtual public Person
    7. {
    8. protected:
    9. int _id;//职工编号
    10. };

     

    (三)虚拟继承解决数据冗余和二义性的原理

    1. 不采用虚拟继承的时候 

    1. class A
    2. {
    3. public:
    4. int _a;
    5. };
    6. class B : public A
    7. {
    8. public:
    9. int _b;
    10. };
    11. class C: public A
    12. {
    13. public:
    14. int _c;
    15. };
    16. class D:public B, public C//先继承B,再继承C
    17. {
    18. public:
    19. int _d;
    20. };

     

    2. 采用虚拟继承的时候

    1. #include
    2. using namespace std;
    3. class A
    4. {
    5. public:
    6. int _a;
    7. };
    8. class B : virtual public A
    9. {
    10. public:
    11. int _b;
    12. };
    13. class C: virtual public A
    14. {
    15. public:
    16. int _c;
    17. };
    18. class D:public B, public C//先继承B,再继承C
    19. {
    20. public:
    21. int _d;
    22. };
    23. int main()
    24. {
    25. D d;
    26. d.B::_a = 1;
    27. d._b = 3;
    28. d.C::_a = 2;
    29. d._c = 4;
    30. d._d = 5;
    31. return 0;
    32. }

     

     

  • 相关阅读:
    (Vue+SpringBoot+elementUi+WangEditer)仿论坛项目
    互联网时代下服务器该如何进行主机加固
    Kubernetes (k8s 1.23) 安装与卸载
    2024全新仿麻豆视频苹果cms源码v10影视模板
    java 实现访问者模式
    Unity C# 网络学习(八)——WWW
    《乔布斯传》英文原著重点词汇笔记(六)【 chapter four 】
    前端经典布局
    岩藻多糖-聚已内酯 Fucoidan-PCL 聚已内酯-PEG-岩藻多糖
    智能音箱中采用的数字音频功放
  • 原文地址:https://blog.csdn.net/m0_63783532/article/details/133832846