C++——虚析构

Posted long5683

tags:

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

目的:

//只执行了 父类的析构函数
//向通过父类指针 把 所有的子类对象的析构函数 都执行一遍
//向通过父类指针 释放所有的子类资源

方法:在父类的析构函数前+virtual关键字

#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");
    
      ~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");
    
    ~C()
    
        delete [] p;
        printf("~C()\n");
    
protected:
private:
    char *p;
;




void howtodelete(A *base)

    delete base;  //这句话不会表现成多态 这种属性


void main()

    C *myC = new C; //new delete匹配
    //
    delete myC; //直接通过子类对象释放资源 不需要写virtual (即不使用虚析构)

    //howtodelete(myC); //使用父类对象释放资源,使用虚析构
    
    cout<<"hello..."<<endl;
    system("pause");
    return ;

 

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

C++——虚析构

虚析构函数(c++常问问题五)

为啥我们需要 C++ 中的纯虚析构函数?

C++虚析构函数

C++ 不使用虚析构的后果及分析

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