在C++中,運算符重載允許你自定義類的運算符行為。對于比較操作,通常有以下幾種情況:
class MyClass {
public:
int value;
MyClass(int v) : value(v) {}
bool operator==(const MyClass& other) const {
return value == other.value;
}
bool operator!=(const MyClass& other) const {
return value != other.value;
}
};
class MyClass {
public:
int value;
MyClass(int v) : value(v) {}
bool operator<(const MyClass& other) const {
return value < other.value;
}
bool operator>(const MyClass& other) const {
return value > other.value;
}
bool operator<=(const MyClass& other) const {
return value <= other.value;
}
bool operator>=(const MyClass& other) const {
return value >= other.value;
}
};
std::cmp_less
、std::cmp_greater
等函數對象來簡化代碼。例如,重載小于運算符:#include <functional>
class MyClass {
public:
int value;
MyClass(int v) : value(v) {}
bool operator<(const MyClass& other) const {
return std::cmp_less(value, other.value);
}
};
注意:在使用運算符重載時,請確保你的重載運算符行為符合邏輯和預期,以避免產生意外的結果。