带有模板的未解决的外部符号错误相关的类

时间:2018-09-11 13:29:27

标签: c++ templates unresolved-external

我编写了以下代码:

Item.h:

#include <iostream>
using namespace std;

template <class T>
class Item
{
private:
    Item<T> * next;
    Item<T> * prev;
    T * data;

public:
    Item(T * pData = NULL);
    ~Item();
};

我还制作了Item.cpp:

#include "Item.h"

template<class T>
Item<T>::Item(T * pData) : data(pData), next(NULL), prev(NULL) {}

template<class T>
Item<T>::~Item() {}

这是主要内容:

#include "Item.h"

int main()
{
    int * s1 = new int(5);
    Item<int> * i = new Item<int>(s1);

    system("pause");
    return 0;
}

当我尝试将Item.h分隔为Item.cpp(如果我不写声明)时,出现此错误:

Error LNK2019 unresolved external symbol "public: __thiscall Item<int>::Item<int>(int *)" (??0?$Item@H@@QAE@PAH@Z) referenced in function _main.

0 个答案:

没有答案