缺少的vtable通常意味着第一个非内联虚拟成员函数没有定义

时间:2015-08-06 17:09:15

标签: c++ virtual-destructor

我很确定这个问题是重复的,但我的代码在这里有所不同,以下是我的代码。它失败并显示“未定义符号”错误,不确定是否丢失。

class Parent {
   public :
     virtual int func () = 0;
     virtual ~Parent();

 };


 class Child : public Parent {
     public :

     int data;
     Child (int k) {
        data = k;
      }
    int func() {   // virtual function
       cout<<"Returning square of 10\n";
        return 10*10;
    }

    void Display () {
    cout<<data<<"\n";

 }

 ~ Child() {

    cout<<"Overridden Parents Destructor \n";

 }
};



int main() {
  Child a(10);
 a.Display();

 }

以下是编译时的O / P.

Undefined symbols for architecture x86_64:
  "Parent::~Parent()", referenced from:
      Child::~Child() in inher-4b1311.o
  "typeinfo for Parent", referenced from:
      typeinfo for Child in inher-4b1311.o
  "vtable for Parent", referenced from:
      Parent::Parent() in inher-4b1311.o
  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.

2 个答案:

答案 0 :(得分:11)

Parent::~Parent()未定义。

您可以将定义直接放入类定义中:

class Parent {
   public :
     virtual int func () = 0;
     virtual ~Parent() {};
 };

或单独定义。或者,从C ++ 11开始,写下virtual ~Parent() = default;

在任何情况下,析构函数都需要定义。

答案 1 :(得分:4)

为了帮助其他任何寻求帮助的人 “注意:缺少 vtable 通常意味着第一个非内联虚拟成员函数没有定义。”

就我而言,错误是由缺失 = 0 引起的;在虚拟定义的末尾。确保所有适当的虚拟定义都 = 0;最后。

virtual HRESULT function(int testInput) = 0;

希望这可以为某人节省一些时间。