我在编写资源类时遇到问题:
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 & __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 实例。
谁能告诉我我在哪里犯了这个错误?