"未定义"在C ++中引用类成员

时间:2014-10-06 21:53:31

标签: c++ oop gcc linker

链接此代码时:

#include <map>
using std::map;
#include <string>
using std::string;
class C {
public:
    static void dump() {
        for (const auto& e : data) {
            string(e.first);
        }
    }
private:
    static map<string,map<string,string>> data;
};
int main() {
    C::dump();
}

...我收到此错误:

/tmp/cc4W2iNa.o: In function `C::dump()':
test.cpp:(.text._ZN1C4dumpEv[_ZN1C4dumpEv]+0x9): undefined reference to `C::data'
collect2: error: ld returned 1 exit status

...来自g ++(GCC)4.9.1。 我做错了吗?

1 个答案:

答案 0 :(得分:7)

您已宣布C::data,但未对其进行定义。在课外添加定义:

map<string,map<string,string>> C::data;

在一个较大的程序中,多个源文件,这必须只在一个源文件中,以满足一个定义规则;而类定义(包括data的声明)可能会在标题中随时可用。