c++中如何比较string是否相同
时间: 2023-07-23 08:44:19 浏览: 88
在C语言中比较两个字符串是否相等的方法
在c++中,你可以使用`==`运算符来比较两个`string`对象是否相同,例如:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "hello";
string str2 = "world";
if (str1 == str2) {
cout << "str1 and str2 are the same" << endl;
} else {
cout << "str1 and str2 are different" << endl;
}
return 0;
}
```
在上述代码中,我们使用了`==`运算符来比较`str1`和`str2`是否相同。如果它们是相同的,程序将输出`str1 and str2 are the same`,否则程序将输出`str1 and str2 are different`。
阅读全文