我使用
gcc 4.3.3尝试编译以下代码:
struct testStruct { int x; int y; bool operator<(testStruct &other) { return x < other.x; } testStruct(int x_,int y_) { x = x_; y = y_; } }; int main() { multiset<testStruct> setti; setti.insert(testStruct(10,10)); return 0; }
我得到这个错误:
/usr/include / c /4.4/bits/stl_function.h|230|error:’__x< __y”
我怀疑我没有做这个操作符重载,因为它应该做,但我只是无法确定确切的问题.我在这里做错了什么?
解决方法
操作符必须是const并引用const引用:
bool operator<(const testStruct &other) const { return x < other.x; }