4

编辑:与c++ 未定义的对 `vtable 的引用相关

我正在尝试做一个关于继承的项目,我收到了这个错误:

/tmp/ccw1aT69.o: In function `main':
main.cpp:(.text+0x15): undefined reference to `Derived::Derived(int)'
/tmp/ccw1aT69.o: In function `Derived::~Derived()':
main.cpp:(.text._ZN20DerivedD2Ev[_ZN20DerivedD5Ev]+0x13): undefined reference to `vtable for Derived'
main.cpp:(.text._ZN20DerivedD2Ev[_ZN20DerivedD5Ev]+0x1f): undefined reference to `Base::~Base()'
collect2: ld returned 1 exit status

这是我的代码:

主.cpp:

#include <iostream>
#include "Base.h"
#include "Derived.h"

int main() {
    Derived intList(25);
}

基地.h:

#ifndef BASE_H
#define BASE_H

class Base {
    public:
            ...
            Base (const Base& otherList);
            virtual ~Base();
    protected:
            int *list;
            int length;
            int maxSize;
};

#endif

基础.cpp:

#include "Base.h"
#include <iostream>

using namespace std;

...definitions of my members...

Base::Base (int size) {
//stuff
}
Base::~Base() {
    delete [] list;
}
Base::Base (const Base& otherList) {
//stuff
}

派生的.h:

#ifndef DERIVED_H
#define DERIVED_H
#include "Base.h"

class Derived: public Base {
    public:
             ...
            Derived (int size = 100);
            ~Derived(); //THIS LINE ADDED AFTER FIRST ANSWER
};

#endif

派生的.cpp:

#include "Derived.h"
#include <iostream>

using namespace std;

Derived::Derived (int size)
        :Base(size){
}

是什么导致了这个错误?看起来我不能调用构造函数,但对我来说看起来不错。

编辑:我尝试了第一个解决方案。现在错误:

/tmp/ccA4XA0B.o: In function `main':
main.cpp:(.text+0x15): undefined reference to `Derived::Derived(int)'
main.cpp:(.text+0x21): undefined reference to `Derived::~Derived()'
collect2: ld returned 1 exit status
4

3 回答 3

7

您已经在 中声明了一个虚拟析构函数Base,但您从未定义它。它需要定义在Derived(以及Base因为它不是纯虚函数),因为一旦main退出它就会被调用。你应该有:

class Base {
public:
    // ...
    virtual ~Base();
};

Base::~Base() {}

class Derived : public Base {
public:
    // ...
    ~Derived();
};

Derived::~Derived() { /* whatever */ }

这至少是您的一个错误的原因。我不知道这个是不是红鲱鱼,但它似乎是:

/tmp/ccw1aT69.o:在函数main': main.cpp:(.text+0x15): undefined reference toDerived::Derived(int)'

您定义Derived::Derived(int),因此很难想象这是一个真正的错误。定义你的析构函数,看看它是否消失。

于 2012-09-07T22:46:32.130 回答
3

好的,只是为了清楚起见,因为除了答案之外,我无法将格式化的代码放入任何内容中。您不需要仅仅因为您的基类具有虚拟 dtor 或纯方法就在派生类中提供析构函数。以下是我可以在三种不同的构造/破坏条件下证明这一点的最简单的方法。输出列在代码之后。我希望这至少有助于@Jeff。我在 VS2005/2008/2010 和一个古老的 gcc 4.1.2 下测试了这个,所以最好是对的。

#include <iostream>

class Base {
public:
    Base()
        { std::cout << "Base()" << std::endl; };

    virtual void call_me() = 0;

    virtual ~Base()
        { std::cout << "~Base()" << std::endl << std::endl; };
};

class Derived : public Base {
public:
    Derived(int i=1)
        { std::cout << "Derived(" << i << ")" << std::endl; }

    // Base::call_me requirements.
    void call_me() 
        { std::cout << "call_me()" << std::endl; }
};

int main(int argc, char* argv[])
{
    // use derived class pointer type
    Derived* pDerived = new Derived();
    pDerived->call_me();
    delete pDerived;

    // use base class pointer type
    Base* pBase = new Derived(2);
    pBase->call_me();
    delete pBase;

    // scope based
    {
        Derived obj(3);
        obj.call_me();
    }
    return 0;
}

输出是:

Base()
Derived(1)
call_me()
~Base()

Base()
Derived(2)
call_me()
~Base()

Base()
Derived(3)
call_me()
~Base()
于 2012-09-08T00:26:40.533 回答
0
main.cpp:(.text+0x15): undefined reference to `Derived::Derived(int)'

正如您的标题问题所说,此错误消息并未说明对类的未定义引用。相反,它抱怨对采用 int 参数的构造函数的未定义引用。从我粗略地看一下你的代码,你只声明了这个构造函数而没有定义它。将定义添加到您的 .cpp 文件中,您应该可以解决此错误。

此外,通常的做法是在所有成员函数声明之前放置构造函数声明。起初我错过了这些声明,因为它们不是我所期望的。我强烈建议您这样做是为了避免将来在此处提问时产生误解。

于 2012-09-07T23:46:34.263 回答