我有一个带有一些数字字段的类,例如:
class Class1 {
int a;
int b;
int c;
public:
// constructor and so on...
bool operator<(const Class1& other) const;
};
我需要使用此类的对象作为std::map
. 因此,我实施operator<
. 在这里使用的最简单的实现是operator<
什么?
编辑:<
只要任何字段不相等,就可以假设
其含义以保证唯一性。
编辑2:
一个简单的实现:
bool Class1::operator<(const Class1& other) const {
if(a < other.a) return true;
if(a > other.a) return false;
if(b < other.b) return true;
if(b > other.b) return false;
if(c < other.c) return true;
if(c > other.c) return false;
return false;
}
这篇文章背后的全部原因只是我发现上面的实现太冗长了。应该有更简单的东西。