C++ 虚拟析构函数 (virtual destructor)

Posted 我是小白呀

tags:

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

C++ 虚拟析构函数

概述

虚析构函数 (virtual destructor) 可以帮我们实现基类指针删除派生类对象.

在这里插入图片描述

问题

当我们从派生类的对象从内存中撤销时会先调用派生的析构函数, 然后再基类的析构函数, 由此就会产生问题:

  • 如果用 new 运算符建立了派生类对象, 并且由一个基类的指针比那里指向该对象
  • 用 delete 运算符撤销对象时, 系统只执行基类的析构函数. 而不执行派生类的析构函数, 派生类对象析构中要求的工作将被忽略

Base 类:

#ifndef PROJECT6_BASE_H
#define PROJECT6_BASE_H

#include <iostream>
using namespace std;

class Base {
public:
    Base() {
        cout << "执行基类构造函数" << endl;
    };
    ~Base() {
        cout << "执行基类析构函数" << endl;
    };
};

#endif //PROJECT6_BASE_H

Derived 类:

#ifndef PROJECT6_DERIVED_H
#define PROJECT6_DERIVED_H

#include <iostream>
#include "Base.h"
using namespace std;

class Derived : public Base {
public:
    Derived() {
        cout << "执行派生类构造函数" << endl;
    };
    ~Derived() {
        cout << "执行派生类析构函数" << endl;
    }
};

#endif //PROJECT6_DERIVED_H

main:

#include <iostream>
#include "Derived.h"
using namespace std;

int main() {

    Base *pt =new Derived;
    delete pt;

    return 0;
}

输出结果:

执行基类构造函数
执行派生类构造函数
执行基类析构函数

虚析构函数

当基类的析构函数为虚函数时, 无论指针指的是同一族中的哪一个类对象, 系统会采用动态关联, 掉啊用相应的析构函数, 对该对象进行清理工作. 即先调用了派生类的析构函数, 再调用了基类的析构函数.

Base 类:

#ifndef PROJECT6_BASE_H
#define PROJECT6_BASE_H

#include <iostream>
using namespace std;

class Base {
public:
    Base() {
        cout << "执行基类构造函数" << endl;
    };
    virtual ~Base() {
        cout << "执行基类析构函数" << endl;
    };
};

#endif //PROJECT6_BASE_H

Derived 类:

#ifndef PROJECT6_DERIVED_H
#define PROJECT6_DERIVED_H

#include <iostream>
#include "Base.h"
using namespace std;

class Derived : public Base {
public:
    Derived() {
        cout << "执行派生类构造函数" << endl;
    };
    ~Derived() {
        cout << "执行派生类析构函数" << endl;
    }
};

#endif //PROJECT6_DERIVED_H

main:

#include <iostream>
#include "Derived.h"
using namespace std;

int main() {

    Base *pt =new Derived;
    delete pt;

    return 0;
}

输出结果:

执行基类构造函数
执行派生类构造函数
执行派生类析构函数
执行基类析构函数

总结

如果将基类的析构函数声明为虚函数时, 由该基类所派生的所有派生类的析构函数也都自动成为虚函数. 即使派生类的析构函数与其基类的构造函数名字不相同.

最好把基类的析构函数声明为虚函数. 即使基类并不需要析构函数, 我们也可以定义一个函数体为空的虚析构函数, 以保证撤销动态分配空间能正确的处理.

注: 构造函数不能声明为虚函数.

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

C++中基类的析构函数为什么要用virtual虚析构函数

c++ virtual总结

通过C++编译视频平台为什么要使用virtual虚析构函数?

C++中基类的析构函数为什么要用virtual虚析构函数

通过C++编译视频平台为什么要使用virtual虚析构函数?

基类的析构函数写成virtual虚析构函数