侧边栏壁纸
博主头像
G

  • 累计撰写 85 篇文章
  • 累计创建 48 个标签
  • 累计收到 10 条评论

目 录CONTENT

文章目录

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

G
G
2020-06-11 / 0 评论 / 0 点赞 / 1,891 阅读 / 0 字 / 正在检测是否收录...

原因:

析构函数是为了在对象不被使用之后释放它的资源,虚函数是为了实现多态。那么把析构函数声明为vitual有什么作用呢? 
直接的讲,C++ 中基类采用virtual虚析构函数是为了防止内存泄漏。具体地说,如果派生类中申请了内存空间,并在其析构函数中对这些内存空间进行释放。假设基类中采用的是非虚析构函数,当删除基类指针指向的派生类对象时就不会触发动态绑定,因而只会调用基类的析构函数,而不会调用派生类的析构函数。那么在这种情况下,派生类中申请的空间就得不到释放从而产生内存泄漏。所以,为了防止这种情况的发生,C++ 中基类的析构函数应采用virtual虚析构函数。
因此,只有当一个类被用来作为基类的时候,才会把析构函数写成虚函数。

示例:

#include <iostream>
using namespace std;

class Base
{
public:
    Base() {}; //Base的构造函数
    ~Base() //Base的析构函数
    {
        cout << "Output from the destructor of class Base!" << endl;
    };
    virtual void DoSomething()
    {
        cout << "Do something in class Base!" << endl;
    };
};

class Derived : public Base
{
public:
    Derived() {}; //Derived的构造函数
    ~Derived() //Derived的析构函数
    {
        cout << "Output from the destructor of class Derived!" << endl;
    };
    void DoSomething()
    {
        cout << "Do something in class Derived!" << endl;
    };
};

int main()
{
    Derived *pTest1 = new Derived(); //Derived类的指针
    pTest1->DoSomething();
    delete pTest1;

    cout << endl;

    Base *pTest2 = new Derived(); //Base类的指针
    pTest2->DoSomething();
    delete pTest2;

    return 0;
}

运行结果:

20180811155034895
————————————————
版权声明:本文为CSDN博主「yhc166188」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yhc166188/article/details/81587442

0

评论区