虚析构函数

Posted 暴力的轮胎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚析构函数相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <cstdio>
#include <string>
using namespace std;

class Base{
public:
    virtual ~Base(){
        cout<<"Base deconstruct func"<<endl;
    }
};

class Derive: public Base{
public:
    ~Derive(){
        cout<<"Derive deconstruct func"<<endl;
    }
};

int main()
{
    Derive *p = new Derive();
    delete p;
    //使用派生类指针指向派生类,会自动调用基类析构函数
    
    Base *p1 = new Derive();
    delete p1;
    //使用基类指针指向派生类,只有当基类析构函数定位为虚函数的时候,才会自动调用派生类析构函数,然后在调用基类的析构函数 与虚函数表有关

    system("pause");
    return 0;
}

  当然不一定要把所有的析构函数都设置成虚函数,因为会增加空间消耗。

以上是关于虚析构函数的主要内容,如果未能解决你的问题,请参考以下文章

理解虚析构函数

析构函数的虚析构和非虚析构调用的差别

C++ 类的多态四(虚析构函数的重要性)

局部抽象类的纯虚析构函数

虚析构函数详解

C++ --- 虚析构和纯虚析构