使用以下代码时,我对链接器错误感到困惑:
// static_const.cpp -- complete code
#include <vector>
struct Elem {
static const int value = 0;
};
int main(int argc, char *argv[]) {
std::vector<Elem> v(1);
std::vector<Elem>::iterator it;
it = v.begin();
return it->value;
}
然而,这在链接时会失败——不知何故,它需要一个静态常量“值”的符号。
$ g++ static_const.cpp
/tmp/ccZTyfe7.o: In function `main':
static_const.cpp:(.text+0x8e): undefined reference to `Elem::value'
collect2: ld returned 1 exit status
顺便说一句,这可以用 -O1 或更好的方式编译;但对于更复杂的情况,它仍然失败。我正在使用 gcc 版本 4.4.4 20100726 (Red Hat 4.4.4-13)。
任何想法我的代码可能有什么问题?