模板类中的静态变量导致C2371'重新定义;不同的基本类型'

时间:2014-11-02 12:40:01

标签: c++

我有一个带有静态成员变量的模板类。但是,在编译时,我收到以下错误:

C2371: 'S_TYPES' : redefinition; different basic types

这是所讨论的课程:

// This all is in Type.h

template<class T>
class Type
{
private:
    static std::map<unsigned int, Type<T>> S_TYPES;
};

template<class T>
std::map<unsigned int, Type<T>> Type<T>::S_TYPES;

如何修复错误?

1 个答案:

答案 0 :(得分:1)

OP在看到错误后立即编辑了问题:您正在定义与声明的类型不同的类型:

template<class T>
class Type
{
private:
    static std::map<unsigned int, Type<T>> S_TYPES;
};

template<class T>
std::map<unsigned int, Type<T>, TypeInfoComparator> Type<T>::S_TYPES; // different

你应该确保它们匹配:

template<class T>
class Type
{
private:
    static std::map<unsigned int, Type<T>> S_TYPES;
};

template<class T>
std::map<unsigned int, Type<T>> Type<T>::S_TYPES;