简单继承出现 Vtable 错误

发布于 2024-12-10 21:09:38 字数 582 浏览 1 评论 0原文

所以我试图编译这个简单的代码:

// In Test.h
#include <iostream>
using namespace std;

class A{

public:
    virtual string f (string&);
};

class B : public A{

public:
    B (string);
    string f (string&);
};

// In Test.cpp
#include <iostream>
#include "Test.h"
using namespace std;


B :: B (string row){
    cout << "HERE";
}

string B :: f (string& x){
    cout << "Test";
}

它看起来很简单,但我不断收到 Undefined reference to 'vtable for A' 错误(编译器是带有 Eclipse IDE 的 MINGW)。当我取出 B 的构造函数实现时,代码可以正常编译。我错过了什么或者这是链接器错误?

So I am trying to compile this simple code:

// In Test.h
#include <iostream>
using namespace std;

class A{

public:
    virtual string f (string&);
};

class B : public A{

public:
    B (string);
    string f (string&);
};

// In Test.cpp
#include <iostream>
#include "Test.h"
using namespace std;


B :: B (string row){
    cout << "HERE";
}

string B :: f (string& x){
    cout << "Test";
}

It seems simple enough but I keep getting a Undefined reference to 'vtable for A' error (compiler is MINGW with Eclipse IDE). When I take out the constructor implementation for B, the code compiles fine. What am I missing or is this a linker error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2024-12-17 21:09:38

我认为你要么必须通过在声明末尾写入 = 0 来使 A::f(string&) 抽象,或者实际上提供 的实现A::f

由于当前虚拟函数A::f不存在,编译器无法为其创建vtable(虚函数表)。

I think you either have to make A::f(string&) abstract by writing = 0 at the end of the declaration, or actually provide an implementation of A::f

Since currently the virtual function A::f does not exist, the compiler cannot create a vtable for it (the virtual function table).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文