我正在使用模板编写一些代码,但出现了一些链接错误:
[链接器错误] 未定义对 `Vector::Vector(Vector const&)' 的引用
但我在 .cpp 中编写了这个函数。这是代码。
template <class T>
Vector<T>::Vector(Vector const& r)
{
m_nSize = r.size();
int i = 0;
m_pElements = new T[m_nSize];
while(i <= m_nSize)
{
m_pElements[i] = r[i];
i++;
}
}
它在.h中声明:
template <class T>
class Vector
{
public:
Vector():m_nSize(0){ m_pElements = (T*)NULL; }
Vector(int size):m_nSize(size){ m_pElements = new T[size]; }
Vector(const Vector& r);
virtual ~Vector(){ delete m_pElements; }
T& operator[](int index){ return m_pElements[index];}
int size(){return m_nSize;}
int inflate(int addSize);
private:
T *m_pElements;
int m_nSize;
};
我现在真的很困惑......我应该怎么做才能纠正?