我正在使用Qt 5.5.1并尝试在我的应用程序中使用模板类来处理某些属性,但是在构建时我得到了对该模板类的每种类型的未定义引用。
这个版本曾经在MSVC ++ 2015中工作,但在切换到Qt之后我相信我可能不会遵循一些语法惯例吗?
这是我的标题文件:
#include <array>
#include <string>
using namespace std;
template <const int SIZE>
class Property
{
public:
Property(const array<pair<int, string>, SIZE>* properties);
~Property();
string getPropertyValue(int code);
private:
const array<pair<int, string>, SIZE>* mProperties;
};
这是我的源文件:
#include "Property.h"
template <const int SIZE>
Property<SIZE>::Property(const array<pair<int, string>, SIZE>* properties)
{
mProperties = properties;
}
template <const int SIZE>
Property<SIZE>::~Property() {}
template <const int SIZE>
string Property<SIZE>::getPropertyValue(int code)
{
for (int i = 0; i < SIZE; i++)
{
if( code == mProperties[0][i].first )
{
return mProperties[0][i].second;
}
}
string("no value found");
}
以下是我的实施:
#include <iostream>
#include "Property.h"
using namespace std;
const int arrSize = 1;
const array<pair<int, string>, arrSize> arrValues{
make_pair(0x02, string("String Value"))
};
int main()
{
Property<arrSize>* properties = new Property<arrSize>(&arrValues);
cout << properties->getPropertyValue(2) << endl;
return 0;
}
以下是我的构建输出:
undefined reference to `Property<1>::Property(std::array<std::pair<int, std::string>, 1u> const*)'
undefined reference to `Property<1>::getPropertyValue(int)'
我想拥有多个属性,编译器会抱怨每个不同大小的属性&lt; 2&gt; :: ...属性&lt; 44&gt; :: ...等...任何帮助将不胜感激。另外,像这样进行代码/值查找的更好方法是什么?
谢谢!
答案 0 :(得分:2)
模板只需要在头文件中定义,这就是为什么你得到一个未定义的引用。一旦我将源模板代码文件移动到头文件中,我就能成功运行它。