string判断相等
时间: 2023-07-21 11:15:01 浏览: 89
判断输入的两个字符串是否相等
5星 · 资源好评率100%
在C++中,可以使用`==`运算符来判断两个字符串是否相等。例如:
```c++
#include <iostream>
#include <string>
int main() {
std::string str1 = "hello";
std::string str2 = "world";
if (str1 == str2) {
std::cout << "str1 is equal to str2" << std::endl;
} else {
std::cout << "str1 is not equal to str2" << std::endl;
}
return 0;
}
```
运行结果为:
```
str1 is not equal to str2
```
阅读全文