web-dev-qa-db-ja.com

vtableがない場合、通常、最初の非インライン仮想メンバー関数には定義がありません。

私はこの質問が重複していると確信していますが、私のコードはここでは異なります。以下は私のコードです。 「未定義のシンボル」エラーで失敗しますが、何が欠けているかわかりません。

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.
12
Aparna Chaganti

Parent::~Parent()は定義されていません。

定義を直接クラス定義に入れることができます:

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

または、個別に定義します。または、C++ 11以降、virtual ~Parent() = default;と記述します。

いずれにせよ、デストラクタには定義が必要です。

14
Christian Hackl