当前位置:   article > 正文

c++父类指针指向子类

c++父类指针指向子类

有一个常见的c++题,就是父类和子类的构造函数和析构函数分别调用顺序:

  • 父类构造函数
  • 子类构造函数
  • 子类析构函数
  • 父类析构函数

以及父类中的函数在子类中重新实现后,父类指针指向子类后,该指针调用的函数是父类中的还是子类中的(子类的)。
通过一个例子说明:

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

class Parent {
public:
    virtual void func() {
        std::cout << "Parent." << std::endl;
    }
    Parent()
    { 
        std::cout << "Parent construct.\n" << std::endl;
    }
    ~Parent()
    { 
        std::cout << "Parent destory.\n" << std::endl;
    }
};

class Son : public Parent {
public:
    void func() {
        std::cout << "Son." << std::endl;
    }
    Son()
    {
        std::cout << "Son construct.\n" << std::endl;
    }
    ~Son()
    {
        std::cout << "Son destory.\n" << std::endl;
    }
};

int main(int argc, char* argv[]) {
    Parent *parent1 = new Parent();     // Parent construct.
    Parent *parent2 = new Son();        // Parent construct.    Son construct.
    Son *son = new Son();               // Parent construct.    Son construct.

    parent1->func();                    // Parent.
    parent2->func();                    // Son.
    son->func();                        // Son.

    delete parent1;                     // Parent destory.
    delete parent2;                     // Parent destory.
    delete son;                         // Son destory.   Parent destory.

    return 0;
}
  • 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

在这里插入图片描述
2024年5月11日18:39:54
今夜偏知春气暖,虫声新透绿窗纱。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/563613
推荐阅读
相关标签
  

闽ICP备14008679号