我要做的是:
为我的类创建一些“注册表”,以便可以使用唯一的字符串查找每个实例(我正在检查它是否唯一,但在下面的示例中省略了它。)
我的问题:
我无法声明对静态成员的引用。我不知道为什么。
代码(省略部分)
//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>*
我真的没有领导这个,所以我有点不能尝试:(
错误:
undefined reference to `ComponentTable<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::componentRegistry'|
这出现在我试图首先使用构件中的成员的位置。我正在使用insert函数和一个正确类型的简单std ::对进行插入。
其他数据:
我希望这些信息足以帮助我;)
答案 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>
的最简单方法。