为什么要声明一个虚拟析构函数C ++?

时间:2012-07-30 15:52:52

标签: c++

  

可能重复:
  Why should I declare a virtual destructor for an abstract class in C++?

我在这里继承了一些我想要了解的代码,头文件是:

class RemoteNotify : public virtual ServiceObject, public virtual RemoteMsg{
      RemoveNotify();
      virtual ~RemoveNotify();
      /* more code down here */
}

我想知道为什么会有人声明virtual析构函数?

0 个答案:

没有答案