第43课 继承的概念和意义

本文内容来自于对狄泰学院 唐佐林老师 C++深度解析 课程的学习总结

组合关系

第43课 继承的概念和意义

实验编程

以电脑为例,编程描述 组合关系

#include <iostream>

using namespace std;

class MainBoard
{
public:
    MainBoard()
    {
        cout << "MainBoard(): " << endl;
    }
    ~ MainBoard()
    {
        cout << "~MainBoard(): " << endl;
    }
};

class CPU
{
public:
    CPU()
    {
        cout << "CPU(): " << endl;
    }
    ~ CPU()
    {
        cout << "~CPU(): " << endl;
    }
};

class DispCard
{
public:
    DispCard()
    {
        cout << "DispCard(): " << endl;
    }
    ~ DispCard()
    {
        cout << "~DispCard(): " << endl;
    }
};


class Memery
{
public:
    Memery()
    {
        cout << "Memery(): " << endl;
    }
    ~ Memery()
    {
        cout << "~Memery(): " << endl;
    }
};

class Disk
{
public:
    Disk()
    {
        cout << "Disk(): " << endl;
    }
    ~ Disk()
    {
        cout << "~Disk(): " << endl;
    }
};

class Computer
{
private:
    MainBoard m_mainboard;
    CPU m_cpu;
    DispCard m_dispcard;
    Memery m_memery;
    Disk m_disk;
public:
    Computer()
    {
        cout << "Compurter(): " << endl;
    }

    ~ Computer()
    {
        cout << "~Compurter(): " << endl;
    }
};

int main()
{
    Computer c;

    return 0;
}

运行结果
第43课 继承的概念和意义

类之间的组合关系

  • 组合关系的特点

其它类的对象 作为 当前类的成员 使用
当前类的对象与成员对象的 生命期相同
成员对象在 用法 上与普通对象 完全一致




惊艳的继承

面向对象中的 继承 指类之间的 父子关系

子类拥有父类的 所有属性和行为
子类就是一种特殊的父类
子类对象可以当作父类对象使用
子类中可以 添加父类没有的 方法和属性

关于继承关系的简单示例
第43课 继承的概念和意义
C++中通过下面的方式描述继承关系
第43课 继承的概念和意义

编程实验

根据上面的语法,编写程序测试类之间的继承关系

#include <iostream>

using namespace std;

class Parent
{
public:
    Parent()
    {
        cout << "Parent() " << endl;
    }

    void method()
    {
        cout << "method() " << endl;
    }
    ~Parent()
    {
        cout << "~Parent() " << endl;
    }
};

class Child : public Parent
{
public:
    Child()
    {
        cout << "Child()" << endl;
    }

    void hello()
    {
        cout << "hello()" << endl;
    }
    ~Child()
    {
        cout << "~Child() " << endl;
    }
};

int main()
{
    Child c;

    c.hello();
    c.method();

    return 0;
}

运行结果
第43课 继承的概念和意义

实现结果:Child 类继承了 Parent 类,Child 对象可以访问 Parent 类中的 method() 函数

重要的规则:

子类就是一个 特殊的父类
子类对象可以 直接初始化 父类对象
子类对象可以 直接赋值给 父类对象

继承的意义:

继承是 C++ 中 代码复用 的重要手段。
通过继承,可以 获得父类的所有功能,并且可以在子类中重写已有功能,或者添加新功能




小结

继承是面向对象中 类之间的一种关系
子类拥有父类的 所有属性和行为
子类对象可以当作父类对象使用
子类中可以 添加父类没有的 方法的属性
继承是面向对象中 代码复用的重要手段

第43课 继承的概念和意义第43课 继承的概念和意义 lzg2011 发布了39 篇原创文章 · 获赞 0 · 访问量 857 私信 关注
上一篇:draw.io 服务端搭建


下一篇:实验四