我想在我的班级上使用 binary_search,所以我定义了一个 operator<。当所有内容都在主文件中时它可以工作,但是当我在另一个文件中编写类时出现链接器错误。
显示问题的最简单示例是 Bh:
class B
{
public:
~B(void);
string b;
int v;
B(int val, string bb);
friend bool operator< (const B &lhs, const B &rhs);
};
bool operator< (const B &lhs, const B &rhs){
return lhs.v < rhs.v;
};
B.cpp 只是定义了构造函数。主要是这样的:
#include "B.h"
int main( int argc, const char* argv[] )
{
vector<B> vec;
B a1(2, "gg");
B a2(4, "gdhd");
vec.push_back(a2);
vec.push_back(a1);
bool pos = binary_search(vec.begin(),vec.end(), B(2, "ghd"));
}
错误 LNK2005: "bool __cdecl operator<(class B const &,class B const &)" (??M@YA_NABVB@@0@Z) 已在 Main.obj 中定义:致命错误 LNK1169:一个或多个多重定义符号成立
如何解决?