[求助]一个头文件和CPP文件的问题
我知道,如果写一个头文件,说明写在一个CPP文件中。在测试文件中只要include这个头文件就可以了。可我编了一个程序,include头文件还是不能用,会有下列的出错提示BSTest.obj : error LNK2001: unresolved external symbol "protected: int __thiscall BSTTree<int>::Insert(int const &,class BSTNode<int> * &)" (?Insert?◎$BSTTree@H@@IAEHABHAAPAV?$BSTNode@H@@@Z)
BSTest.obj : error LNK2001: unresolved external symbol "protected: class BSTNode<int> const * __thiscall BSTTree<int>::FindMin(class BSTNode<int> const *)const " (?FindMin@?$BSTTree@H@@IBEPBV?$BSTNode@H@@PBV2@@Z)
BSTest.obj : error LNK2001: unresolved external symbol "protected: class BSTNode<int> const * __thiscall BSTTree<int>::FindMax(class BSTNode<int> const *)const " (?FindMax@?$BSTTree@H@@IBEPBV?$BSTNode@H@@PBV2@@Z)
这个是怎么回事?你们以前碰到过了吗?怎么解决?这个问题困扰我很久了