zoukankan      html  css  js  c++  java
  • 什么情况下需要将析构函数定义为虚函数?

    C++交流群: 302558294(欢迎你的加入)

    原文地址:http://blog.csdn.net/jiadebin890724/article/details/7951461#comments  ,感谢原作者总结分享

     

    首先要明确:


    1、每个析构函数(不加 virtual) 只负责清除自己的成员。
    2、可能有基类指针,指向的确是派生类成员的情况。(这是很正常的),

       那么当析构一个指向派生类成员的基类指针时,程序就不知道怎么办了。 

       所以要保证运行适当的析构函数,基类中的析构函数必须为虚析构。

            基类指针可以指向派生类的对象(多态性),如果删除该指针delete []p;就会调用该指针指向的派生类析构函数,而派生类的析构函数又自动调用基类的析构函数,这样整个派生类的对象完全被释放。如果析构函数不被声明成虚函数,则编译器实施静态绑定,在删除基类指针时,只会调用基类的析构函数而不调用派生类析构函数,这样就会造成派生类对象析构不完全。所以,将析构函数声明为虚函数是十分必要的。

    示例代码:

    1.第一段代码

    [cpp] view plain copy
     
     print?在CODE上查看代码片派生到我的代码片
    1. #include<iostream>  
    2. using namespace std;  
    3. class ClxBase  
    4. {  
    5. public:  
    6.     ClxBase() {};  
    7.     ~ClxBase() {cout << "Output from the destructor of class ClxBase!" << endl;};      
    8.     void DoSomething() { cout << "Do something in class ClxBase!" << endl; };  
    9. };  
    10.   
    11. class ClxDerived : public ClxBase  
    12. {  
    13. public:  
    14.     ClxDerived() {};  
    15.     ~ClxDerived() { cout << "Output from the destructor of class ClxDerived!" << endl; };      
    16.     void DoSomething() { cout << "Do something in class ClxDerived!" << endl; };  
    17. };  
    18. int main()  
    19. {  
    20.     ClxDerived *p = new ClxDerived;  
    21.     p->DoSomething();  
    22.     delete p;  
    23.     return 0;  
    24. }  
    运行结果:

    Do something in class ClxDerived!

    Output from the destructor of class ClxDerived!

    Output from the destructor of class ClxBase!

    这段代码中基类的析构函数不是虚函数,在main函数中用继承类的指针去操作继承类的成员,释放指针P的过程是:先释放继承类的资源,再释放基类资源。

    2.第二段代码

    [cpp] view plain copy
     
     print?在CODE上查看代码片派生到我的代码片
    1. #include<iostream>  
    2. using namespace std;  
    3. class ClxBase  
    4. {  
    5. public:  
    6.     ClxBase() {};  
    7.     ~ClxBase() {cout << "Output from the destructor of class ClxBase!" << endl;};      
    8.     void DoSomething() { cout << "Do something in class ClxBase!" << endl; };  
    9. };  
    10.   
    11. class ClxDerived : public ClxBase  
    12. {  
    13. public:  
    14.     ClxDerived() {};  
    15.     ~ClxDerived() { cout << "Output from the destructor of class ClxDerived!" << endl; };      
    16.     void DoSomething() { cout << "Do something in class ClxDerived!" << endl; }  
    17. };  
    18. int main()  
    19. {   
    20.     ClxBase *p = new ClxDerived;  
    21.     p->DoSomething();  
    22.     delete p;  
    23.     return 0;  
    24. }  
    输出结果:

    Do something in class ClxBase!
    Output from the destructor of class ClxBase!

    这段代码中基类的析构函数同样不是虚函数,不同的是在main函数中用基类的指针去操作继承类的成员,释放指针P的过程是:

    只是释放了基类的资源,而没有调用继承类的析构函数.调用dosomething()函数执行的也是基类定义的函数.
    一般情况下,这样的删除只能够删除基类对象,而不能删除子类对象,形成了删除一半形象,造成内存泄漏.
    在公有继承中,基类对派生类及其对象的操作,只能影响到那些从基类继承下来的成员.如果想要用基类对非继承成员进行操作,则要把基类的这个函数定义为虚函数.
    析构函数自然也应该如此:如果它想析构子类中的重新定义或新的成员及对象,当然也应该声明为虚的.


    3.第三段代码:

    [cpp] view plain copy
     
     print?在CODE上查看代码片派生到我的代码片
    1. #include<iostream>  
    2. using namespace std;  
    3. class ClxBase  
    4. {  
    5. public:  
    6.     ClxBase() {};  
    7.     virtual ~ClxBase() {cout << "Output from the destructor of class ClxBase!" << endl;};  
    8.     virtual void DoSomething() { cout << "Do something in class ClxBase!" << endl; };  
    9. };  
    10.   
    11. class ClxDerived : public ClxBase{  
    12. public:  
    13.     ClxDerived() {};  
    14.     ~ClxDerived() { cout << "Output from the destructor of class ClxDerived!" << endl; };  
    15.     void DoSomething() { cout << "Do something in class ClxDerived!" << endl; };  
    16. };  
    17.   
    18. int main(){   
    19.     ClxBase *p = new ClxDerived;  
    20.     p->DoSomething();  
    21.     delete p;  
    22.     return 0;  
    23. }  
    运行结果:

    Do something in class ClxDerived!
    Output from the destructor of class ClxDerived!
    Output from the destructor of class ClxBase!

    这段代码中基类的析构函数被定义为虚函数,在main函数中用基类的指针去操作继承类的成员,释放指针P的过程是

    :只是释放了继承类的资源,再调用基类的析构函数.调用dosomething()函数执行的也是继承类定义的函数.

    如果不需要基类对派生类及对象进行操作,则不能定义虚函数,因为这样会增加内存开销.当类里面有定义虚函数的时候,编译器会给类添加一个虚函数表,里面来存放虚函数指针,

    这样就会增加类的存储空间.所以,只有当一个类被用来作为基类的时候,才把析构函数写成虚函数.

    http://blog.csdn.net/rl529014/article/details/52839264

  • 相关阅读:
    自己编译GCC(compile gcc from source)
    sphinx PDF 中文
    rst2pdf 中文
    Pandoc PDF 中文
    Linux XMind
    asp.net 邮件发送类
    asp.net 音乐播放器
    使用X-UA-Compatible来设置IE浏览器兼容模式
    asp.net(c#)网页跳转七种方法小结
    C#中HashTable的用法
  • 原文地址:https://www.cnblogs.com/findumars/p/5813696.html
Copyright © 2011-2022 走看看