尝试插入到(c)中时,’operator <'不匹配?

前端之家收集整理的这篇文章主要介绍了尝试插入到(c)中时,’operator <'不匹配?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用 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; }
原文链接:https://www.f2er.com/c/110895.html

猜你在找的C&C++相关文章