0

我正在使用模板编写一些代码,但出现了一些链接错误:

[链接器错误] 未定义对 `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;
};

我现在真的很困惑......我应该怎么做才能纠正?

4

2 回答 2

3

您应该使实现可见。移动

template <class T>
Vector<T>::Vector(Vector const& r)
{
    //....
}

cpp文件到标题。

于 2012-05-25T08:26:41.740 回答
2

请参阅 C++ 常见问题解答 (http://www.parashift.com/c++-faq-lite/templates.html#faq-35.13)。基本上将代码放在头文件中。

于 2012-05-25T08:27:13.057 回答