为虚函数返回静态成员,缺少抽象类的vtable

时间:2016-06-27 14:46:01

标签: c++ linker linker-errors vtable undefined-function

建议cpp的新人,可能会愚蠢。

我在实现虚函数时尝试返回静态属性。此问题是链接器错误,表示该函数未实现。我迷失了这个问题。

我能够使用以下精简代码重现错误:

#include <iostream>
#include <map>

class Abstract1 {
public:
    virtual char* getFoo();
};

class Base: public Abstract1 {
public:
    char* getFoo() {
        return Base::mapper[1];
    }
    static std::map<int,char*> mapper;
};

std::map<int, char*> Base::mapper;
int main(int argc, const char * argv[]) {
    Base::mapper[0] = "Hello!\n";
    Base::mapper[1] = "Goodbye!\n";
    Base* hello = new Base();
    // insert code here...
    std::cout << hello->getFoo() << "\n";
    return 0;
}

产生以下链接器错误:

Undefined symbols for architecture x86_64:
  "typeinfo for Abstract1", referenced from:
      typeinfo for Base in main.o
  "vtable for Abstract1", referenced from:
      Abstract1::Abstract1() in main.o

1 个答案:

答案 0 :(得分:1)

Abstract1::getFoo只是虚拟的,而不是抽象的。

您可以将其设为摘要:virtual char * getFoo() = 0;或提供默认实施。