1

此代码在 MSVC 中运行良好,但根据 gcc-4.7.2 C++11,链接器会出现以下问题。它出什么问题了

演示

错误:

/home/r7Qecv/ccEZjv1w.o: In function `main':
prog.cpp:(.text.startup+0xa): undefined reference to `Foo<long>::s'
prog.cpp:(.text.startup+0x17): undefined reference to `Foo<int>::s'
prog.cpp:(.text.startup+0x2c): undefined reference to `Foo<long>::s'
collect2: error: ld returned 1 exit status

代码

#include <iostream>
#include <stack>

using namespace std;

template<class T>
class Foo{
public:
    T a;
    static T s;
};
template<>
int Foo<int>::s;
template<>
long Foo<long>::s;
int main(){

    Foo<int> f;
    Foo<long> f2;
    f.a=4;
    f.s=6;
    f2.a=8;
    std::cout<<f2.s;
    f2.s=11;

    return 0;
}
4

2 回答 2

4

你还没有实例化你的静态成员,你只是声明了它们。

这样做(或类似的):

template<>
int Foo<int>::s = 0;
template<>
long Foo<long>::s = 0;
于 2013-04-15T21:29:56.443 回答
4

答案是,您需要初始化静态成员才能使其成为定义:

14.7.3p13

如果声明包含初始化器,则模板的静态数据成员的显式特化是定义;否则,它是一个声明。

于 2013-04-15T21:32:25.343 回答