string怎么比较相等
时间: 2024-01-22 17:18:29 浏览: 40
string类型的比较
在 C++ 中,可以使用 `==` 运算符来比较两个字符串是否相等。例如:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str1 = "hello";
std::string str2 = "world";
std::string str3 = "hello";
if (str1 == str2) {
std::cout << "str1 and str2 are equal" << std::endl;
} else {
std::cout << "str1 and str2 are not equal" << std::endl;
}
if (str1 == str3) {
std::cout << "str1 and str3 are equal" << std::endl;
} else {
std::cout << "str1 and str3 are not equal" << std::endl;
}
return 0;
}
```
输出结果为:
```
str1 and str2 are not equal
str1 and str3 are equal
```
在这个示例中,我们定义了三个字符串 `str1`、`str2` 和 `str3`,并使用 `==` 运算符比较它们是否相等。
阅读全文