zl程序教程

您现在的位置是:首页 >  后端

当前栏目

【C++零散】虚函数和虚继承

C++继承 函数
2023-09-27 14:20:37 时间

1. C++中父类的虚函数必需要实现吗?

(1)在main函数中,假设有父类或者子类的实例对象,就须要有父类的虚函数的实现。(基类虚析构也需要实现)
(2)在main函数中,假设没有父类或者子类的实例对象,能够不实现父类的虚函数。
(3)假设把虚函数写成纯虚函数,也就不须要实现了。也没不会发生上述讨论。

2. C/C++基类的析构函数为什么必须定义为虚函数?

1.一般规律是,只要类中的任何一个函数是虚函数,那么析构函数也应该是虚函数。(就算基类中没有虚函数,析构函数也应该设为虚析构
2.在多态当中,一定要虚将基类的析构函数设置为虚函数并将其实现,只有这样,才能够达到按对象构造的逆序来析构对象;

在实现多态时,当用基类操作派生类,在析构时防止只析构基类而不析构派生类的状况发生。

(1)第一种情况:没有多态,创建派生类对象,基类的析构函数不是虚函数

#include<iostream>
using namespace std;
//基类
class ClxBase{
public:
    ClxBase() {};
    //析构函数不是虚函数
    ~ClxBase() {
        cout << "Output from the destructor of class ClxBase!" << endl;
    };
 
    void DoSomething() {
        cout << "Do something in class ClxBase!" << endl; 
    };
};
 
//派生类
class ClxDerived : public ClxBase{
public:
    ClxDerived() {};
    ~ClxDerived() { 
        cout << "Output from the destructor of class ClxDerived!" << endl; 
    };
 
    void DoSomething() { 
        cout << "Do something in class ClxDerived!" << endl;
    };
};
 
  int main(){  
      //没有多态,派生类对象
      ClxDerived *p =  new ClxDerived;
      p->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的过程是:先释放派生类的资源(执行~ClxDerived()),再释放基类资源(C++ primer里说编译器总是显示调用派生类对象基类部分的析构函数~ClxBase())。

(2)第二种情况:有多态,创建派生类对象,基类的析构函数不是虚函数

#include<iostream>
using namespace std;
//基类
class ClxBase{
public:
    ClxBase() {};
    //析构函数不是虚函数
    ~ClxBase() {
        cout << "Output from the destructor of class ClxBase!" << endl;
    };
 
    void DoSomething() {
        cout << "Do something in class ClxBase!" << endl;
    };
};
 
//派生类
class ClxDerived : public ClxBase{
public:
    ClxDerived() {};
    ~ClxDerived() {
        cout << "Output from the destructor of class ClxDerived!" << endl;
    };
 
    void DoSomething() {
        cout << "Do something in class ClxDerived!" << endl;
    }
};
  int main(){ 
      //有多态
      ClxBase *p =  new ClxDerived;
      p->DoSomething();
      delete p;
      return 0;
  } 
 
//运行结果
Do something in class ClxBase!
Output from the destructor of class ClxBase!
#include <iostream>
using namespace std;
//基类
class ClxBase
{
public:
    ClxBase(){};
    //析构函数是虚函数
    virtual ~ClxBase()
    {
        cout << "Output from the destructor of class ClxBase!" << endl;
    };

    void DoSomething()
    {
        cout << "Do something in class ClxBase!" << endl;
    };
};

//派生类
class ClxDerived : public ClxBase
{
public:
    ClxDerived(){};
    ~ClxDerived()
    {
        cout << "Output from the destructor of class ClxDerived!" << endl;
    };

    void DoSomething()
    {
        cout << "Do something in class ClxDerived!" << endl;
    }
};
int main()
{
    ClxBase *p = new ClxDerived;
    p->DoSomething();
    delete p;
    return 0;
}

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

这段代码中基类的析构函数同样不是虚函数,不同的是在main函数中用基类的指针去操作派生类的成员。释放指针P的过程是:只是释放了基类的资源,而没有调用派生类的析构函数(因没有多态,静态绑定,只执行基类的析构函数~ClxBase())。调用dosomething()函数执行的也是基类定义的函数。

一般情况下,这样的删除只能够删除基类对象,而不能删除子类对象,形成了删除一半的现象从而造成内存泄漏。正因为如此,需要将基类的析构函数定义为虚析构函数!!

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

(3)第三种情况:有多态,创建派生类对象,基类的析构函数是虚函数

#include<iostream>
using namespace std;
 
//基类
class ClxBase{
public:
    ClxBase() {};
    virtual ~ClxBase() {
        cout << "Output from the destructor of class ClxBase!" << endl;
    };
    virtual void DoSomething() { 
        cout << "Do something in class ClxBase!" << endl;
    };
};
 
//派生类
class ClxDerived : public ClxBase{
public:
    ClxDerived() {};
    ~ClxDerived() { 
        cout << "Output from the destructor of class ClxDerived!" << endl;
    };
    void DoSomething() {
        cout << "Do something in class ClxDerived!" << endl;
    };
};
 
  int main(){ 
      //有多态
      ClxBase *p =  new ClxDerived;
      //当基类是虚函数时,基类的指针将表现为派生类的行为(非虚函数将表现为基类行为)
      p->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()函数执行的也是继承类定义的函数。