virtual析构函数的作用?

本文通过实例解释了为何将基类的析构函数声明为虚函数至关重要,特别是为了避免内存泄漏问题。通过对比不同情况下的程序运行结果,清晰展示了虚析构函数的作用。

大家知道,析构函数是为了在对象不被使用之后释放它的资源,虚函数是为了实现多态。那么把析构函数声明为vitual有什么作用呢?请看下面的代码:
1         #include
2       using namespace std;
3
4       class Base
5       {
6       public:
7                Base() {};       //Base的构造函数
8               ~Base()        //Base的析构函数
9                {
10                       cout << "Output from the destructor of class Base!" << endl;
11              };
12              virtual void DoSomething() 
13              {
14                       cout << "Do something in class Base!" << endl;
15              };
16     };
17    
18     class Derived : public Base
19     {
20     public:
21              Derived() {};     //Derived的构造函数
22              ~Derived()      //Derived的析构函数
23              {
24                       cout << "Output from the destructor of class Derived!" << endl;
25              };
26              void DoSomething()
27              {
28                       cout << "Do something in class Derived!" << endl;
29              };
30     };
31    
32     int main()
33     {
34              Derived *pTest1 = new Derived();   //Derived类的指针
35              pTest1->DoSomething();
36              delete pTest1;
37    
38              cout << endl;
39    
40              Base *pTest2 = new Derived();      //Base类的指针
41              pTest2->DoSomething();
42              delete pTest2;
43    
44              return 0;
45     }
先看程序输出结果:
1       Do something in class Derived!
2       Output from the destructor of class Derived!
3       Output from the destructor of class Base!
4      
5       Do something in class Derived!
6       Output from the destructor of class Base!
代码第36行可以正常释放pTest1的资源,而代码第42行没有正常释放pTest2的资源,因为从结果看Derived类的析构函数并没有被调用。通常情况下类的析构函数里面都是释放内存资源,而析构函数不被调用的话就会造成内存泄漏。原因是指针pTest2是Base类型的指针,释放pTest2时只进行Base类的析构函数。在代码第8行前面加上virtual关键字后的运行结果如下:
1       Do something in class Derived!
2       Output from the destructor of class Derived!
3       Output from the destructor of class Base!
4      
5       Do something in class Derived!
6       Output from the destructor of class Derived!
7       Output from the destructor of class Base!
此时释放指针pTest2时,由于Base的析构函数是virtual的,就会先找到并执行Derived类的析构函数,然后再执行Base类的析构函数,资源正常释放,避免了内存泄漏。
因此,只有当一个类被用来作为基类的时候,才会把析构函数写成虚函数。

析构函数主要是为了避免内存泄露,尤其是在子类中有指针成员变量的情况下使用。当使用基类指针指向一个子类对象,并通过`delete`释放该指针指向的对象时,如果基类中没有定义虚析构函数,那么只会调用基类的析构函数,子类的析构函数不会被调用,这可能导致子类特有的资源没有被正确释放。而通过在基类中定义虚析构函数,可以确保在删除对象时首先调用子类的析构函数,然后调用基类的析构函数,从而确保所有资源被正确释放,达到释放子类中堆内存的目的,防止内存泄露 [^1][^3]。 以下是一个使用虚析构函数的示例代码: ```cpp #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class A { public: A() { p = new char[20]; strcpy(p, "obja"); printf("A()\n"); } virtual ~A() { delete[] p; printf("~A()\n"); } protected: private: char* p; }; class B : public A { public: B() { p = new char[20]; strcpy(p, "objb"); printf("B()\n"); } virtual ~B() { delete[] p; printf("~B()\n"); } protected: private: char* p; }; class C : public B { public: C() { p = new char[20]; strcpy(p, "objc"); printf("C()\n"); } virtual ~C() { delete[] p; printf("~C()\n"); } protected: private: char* p; }; void HowToDeleteA(A* base) { delete base; } void HowToDeleteB(B* base) { delete base; } int main() { A* baseA = new C; B* baseB = new C; cout << "hello world" << endl; HowToDeleteA(baseA); HowToDeleteB(baseB); return 0; } ``` 在上述代码中,使用了虚析构函数后,当通过基类指针删除子类对象时,会依次调用子类和基类的析构函数,确保所有资源被正确释放 [^2]。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值