以下代码无法与g ++ 4.8.2链接:
#include <map>
struct Foo
{
constexpr static int foo = 1;
};
static std::map<int, int> map {{1, Foo::foo}};
int main()
{
return Foo::foo;
}
我收到以下错误:
g++ -std=c++11 -o foo foo.cc
/tmp/ccZXCwiK.o: In function `__static_initialization_and_destruction_0(int, int)':
foo.cc:(.text+0x51): undefined reference to `Foo::foo'
如果我评论出地图,事情就好了。这是一个编译器错误,还是我在标准中缺少的一些极端情况?
答案 0 :(得分:7)
您忘记定义静态成员。
只要你使用它,就需要一个完整的定义。是的,即使它有一个内联初始化器,是的,即使它标记为constexpr
。
添加:
constexpr int Foo::foo;
您的原始代码通过ideone.com和Coliru在GCC 4.8.1中为我工作,但是启用了优化(因此在每种情况下,符号可能会取代常量)。优化后,the error is reproducible。