我有我的课,例如 TEST.h 中的 TEST 我有
朋友 ostream& operator<< (ostream& out, const test& outstr);
在 TEST.cc 中
ostream& 运算符 <<(ostream& out, test& strout) { out<< "TEST"; 退出;}
在主测试 x 中;cout<<x;
我收到错误消息:错误:未定义对 `operator<<(std::basic_ostream >&, test const&) 的引用
有什么问题?