C ++未解析的外部符号,我已经定义了函数

时间:2016-02-08 11:22:14

标签: c++ unresolved-external

当我想要构建它时,我已经编写了我的代码,它说:对于某些函数来说,未解析的外部符号“,例如析构函数:

头文件:

template <class T> class Tree
{
*not important*
public:
    ~Tree()
}

cpp文件:

template <class T>
Tree<T>::~Tree()
{
    if (root != NULL)
    clear(root);
}

我还定义并清除了功能,这不是问题..

0 个答案:

没有答案