标签:undefined reference

c++使用模板 new时提示undefined reference

poor.h代码: #ifndef _POOR_H_ #define _POOR_H_ using namespace std; //池 template<class D>  class Poor { public: Poor(); ~Poor(); }; #endif poor.cpp #include "poor.h" templat……