本文介绍了关于纯虚拟析构函数的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我们定义一个具有纯虚拟析构函数的抽象类,为什么我们必须给抽象类中的析构函数定义?

If we define a abstract class which has a pure virtual destructor, why do we have to give a definition of a destructor in the abstract class?

推荐答案

当对象被销毁时,必须调用基类的析构函数,因此它需要一个定义。

The destructor for the base class must be called when the object is destroyed, so it needs a definition.

这篇关于关于纯虚拟析构函数的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 03:32