template static var = undefined reference

时间:2013-04-15 21:24:33

标签: c++

此代码在MSVC中运行正常,但根据gcc-4.7.2 C ++ 11,链接器会遇到以下问题。它有什么问题

Demo

错误:

/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;
}

2 个答案:

答案 0 :(得分:4)

您尚未实例化您的静态成员,您只是声明了它们。

这样做(或类似):

template<>
int Foo<int>::s = 0;
template<>
long Foo<long>::s = 0;

答案 1 :(得分:4)

答案是,你需要初始化静态成员,使其成为一个定义:

14.7.3p13

  

模板的静态数据成员的显式特化是a   如果声明包含初始化程序,则定义;否则,它   是宣言。