7
未定义对静态类成员的引用
谁能解释为什么以下代码无法编译?至少在g ++ 4.2.4上。 更有趣的是,当我将MEMBER转换为int时为什么会编译? #include <vector> class Foo { public: static const int MEMBER = 1; }; int main(){ vector<int> v; v.push_back( Foo::MEMBER ); // undefined reference to `Foo::MEMBER' v.push_back( (int) Foo::MEMBER ); // OK return 0; }