c ++不能定义对静态模板成员的引用,父类指针为类型

时间:2018-02-16 09:27:48

标签: c++ templates pointers static static-members

我要做的是:

为我的类创建一些“注册表”,以便可以使用唯一的字符串查找每个实例(我正在检查它是否唯一,但在下面的示例中省略了它。)

我的问题:

我无法声明对静态成员的引用。我不知道为什么。

代码(省略部分)

//component.h
template <class t>
class ComponentTable : InstanceCounted<ComponentTable<t>> //Instance Counted is a template that automatically counts the instances
{
private:
    //Omitted
    static std::unordered_map<std::string, ComponentTable*> componentRegistry;
public:
    //Omitted, the insert happens in the constructor and it gets removed in the destructor
}
//component.cpp
template<class t>
std::unordered_map<std::string, ComponentTable<t>*> ComponentTable<t>::componentRegistry;
//---

我已尝试过的内容

  • 将标题
  • 中的ComponentTable*更改为ComponentTable<t>*
  • 检查标题和cpp文件中的拼写。
  • 重建项目

我真的没有领导这个,所以我有点不能尝试:(

错误:

undefined reference to `ComponentTable<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::componentRegistry'|

这出现在我试图首先使用构件中的成员的位置。我正在使用insert函数和一个正确类型的简单std ::对进行插入。

其他数据:

  • 使用CodeBlocks制作并使用MinGW在c ++ 14模式下编译。

我希望这些信息足以帮助我;)

1 个答案:

答案 0 :(得分:1)

由于您正在处理模板,因此您应该在标题本身中定义静态成员:

//component.h
template <class t>
class ComponentTable : InstanceCounted<ComponentTable<t>>
{
    static std::unordered_map<std::string, ComponentTable*> componentRegistry;
};

template<class t>
std::unordered_map<std::string, ComponentTable<t>*> ComponentTable<t>::componentRegistry;

这是确保每个componentRegistry实例化ComponentTable<t>的最简单方法。