标签: c++ unresolved-external
当我想要构建它时,我已经编写了我的代码,它说:对于某些函数来说,未解析的外部符号“,例如析构函数:
头文件:
template <class T> class Tree { *not important* public: ~Tree() }
cpp文件:
template <class T> Tree<T>::~Tree() { if (root != NULL) clear(root); }
我还定义并清除了功能,这不是问题..