在 C++ 中,要比較兩個 value 對象(例如,兩個整數、兩個字符串或兩個自定義類的對象),通常需要使用比較運算符(==
、!=
、>
、<
、>=
和 <=
)
以下是一些示例:
int a = 5;
int b = 10;
if (a == b) {
// a 等于 b
} else if (a > b) {
// a 大于 b
} else {
// a 小于 b
}
#include<string>
std::string str1 = "hello";
std::string str2 = "world";
if (str1 == str2) {
// str1 等于 str2
} else if (str1 > str2) {
// str1 大于 str2
} else {
// str1 小于 str2
}
首先,需要在類中重載比較運算符。例如:
class MyClass {
public:
int value;
bool operator==(const MyClass &other) const {
return value == other.value;
}
bool operator>(const MyClass &other) const {
return value > other.value;
}
};
然后,可以像下面這樣比較兩個 MyClass 對象:
MyClass obj1;
obj1.value = 5;
MyClass obj2;
obj2.value = 10;
if (obj1 == obj2) {
// obj1 等于 obj2
} else if (obj1 > obj2) {
// obj1 大于 obj2
} else {
// obj1 小于 obj2
}
注意:如果沒有為自定義類實現比較運算符重載,則無法直接使用比較運算符進行比較。在這種情況下,需要實現適當的比較方法并在類中進行調用。