我在编写Resource类时遇到了问题:
class BaseResource {
protected:
unsigned int size;
public:
virtual ~BaseResource() {}
template<class T> const T& GetValue() const;
template<class T, class U> void GetValue(const U& rhs);
unsigned int GetSize() {
return this->size;
}
void SetSize(unsigned int size) {
this->size = size;
}
};
template<class T>
class Resource : public BaseResource {
T value;
public:
virtual ~Resource() {}
Resource(unsigned int size, const T& rhs) { this->size = size; this->value = rhs; }
const T& GetValue() const {return value;}
void SetValue(const T& rhs) {value=rhs;}
};
我认为上面的类是正确定义的所以我 不明白为什么以下代码会产生链接器错误:
Test.obj:错误LNK2001:未解析的外部符号“”public:char * const&amp; __thiscall BaseResource :: GetValue(void)const“(?? $ GetValue @ PAD @ BaseResource @@ QBEABQADXZ)”。
char* c = new char[3];
c[0] = '1';
c[1] = '2';
c[2] = '3';
BaseResource* resource = new Resource<char*>(3, c);
char* loadedResource = resource->GetValue<char*>();
在我看来,这应该创建一个包含char *的Resource实例,并且可以返回它。
有人能告诉我在哪里犯了这个错误吗?
答案 0 :(得分:3)
未实施以下方法:
template<class T> const T& GetValue() const;
template<class T, class U> void GetValue(const U& rhs);
我希望你不打算把它们变成虚拟的,因为那不起作用。 模板方法不能虚拟化。 因为它们没有实现,这无疑解释了链接问题。
答案 1 :(得分:2)
这些函数的实现应该与类相同。在这种情况下,您已实例化模板函数,并且不会违反具体实例化函数。每次使用模板时,都需要在使用该功能的翻译单元中包含该功能的定义。
修改
这是基本的想法。您需要定义植入,以便在实例化类时完全定义类。
public:
virtual ~BaseResource() {}
template<class T> const T& GetValue() const
{
return someT;
}
template<class T, class U> void GetValue(const U& rhs)
{
return someT;
}
unsigned int GetSize() {
return this->size;
}
void SetSize(unsigned int size) {
this->size = size;
}
};