• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

浅谈C++基类的析构函数为虚函数

c++ 搞代码 4年前 (2022-01-06) 25次浏览 已收录 0个评论

本文重点:应该为

来源gao!%daima.com搞$代*!码网

多态基类声明虚析构器。一旦一个类包含虚函数,它就应该包含一个虚析构器。如果一个类不用作基类或者不需具有多态性,便不应该为它声明虚析构器。

1、原因:

   在实现多态时, 当用基类指针操作派生类, 在析构时候防止只析构基类而不析构派生类。

2、例子:

  (1)、

      #include   using namespace std;   class Base{   public:    Base() {};     ~Base() {cout << "Output from the destructor of class Base!" << endl;};     void DoSomething() { cout << "Do something in class Base!" << endl; };   };   class Derived : public Base{   public:    Derived() {};     ~Derived() { cout << "Output from the destructor of class Derived!" << endl; };     void DoSomething() { cout << "Do something in class Derived!" <DoSomething();      delete p;      return 0;    } 

  运行结果:

  Do something in class Derived!           

  Output from the destructor of class Derived!

  Output from the destructor of class Base! 

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

  (2)、

    #include   using namespace std;   class Base{   public:    Base() {};     ~Base() {cout << "Output from the destructor of class Base!" << endl;};     void DoSomething() { cout << "Do something in class Base!" << endl; };   };   class Derived : public Base{   public:    Derived() {};     ~Derived() { cout << "Output from the destructor of class Derived!" << endl; };     void DoSomething() { cout << "Do something in class Derived!" <DoSomething();      delete p;      return 0;    } 

    运行结果:

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

      代码中基类的析构函数同样不是虚函数,不同的是在main函数中用基类的指针去操作继承类的成员,释放指针P的过程是:只释放基类的资源,而没有调用继承类的析构函数。 调用DoSomething()函数执行的也是基类定义的函数。

      一般情况下,这样的删除只能够删除基类对象,而不能删除子类对象,形成了删除一半形象,造成内存泄漏。

      在公有继承中,基类对派生类及其对象的操作,只能影响到那些从基类继承下来的成员。如果想要用基类对非继承成员进行操作,则要把基类的这个函数定义为虚函数。 析构函数自然也应该如此:如果它想析构子类中的重新定义或新的成员及对象,当然也应该声明为虚的。

   (3)、

   #include   using namespace std;   class Base{   public:    Base() {};     virtual ~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() { cout << "Output from the destructor of class Derived!" << endl; };     void DoSomething() { cout << "Do something in class Derived!" <DoSomething();      delete p;      return 0;    } 

  运行结果:

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

    代码中基类的析构函数被定义为虚函数,在main函数中用基类的指针去操作继承类的成员,释放指针P的过程是:释放了继承类的资源,再调用基类的析构函数。调用DoSomething()函数执行的也是继承类定义的函数。

3、总结:

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

以上就是浅谈C++基类的析构函数为虚函数的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:浅谈C++基类的析构函数为虚函数

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址