c++比较字符串是否相等
时间: 2023-08-20 15:30:56 浏览: 87
C++字符串函数大全.txt
5星 · 资源好评率100%
在C++中,我们可以使用字符串类`std::string`来比较两个字符串是否相等。具体方法如下:
```c++
#include <iostream>
#include <string>
int main() {
std::string str1 = "hello";
std::string str2 = "world";
if(str1 == str2) {
std::cout << "str1 equals str2\n";
} else {
std::cout << "str1 does not equal str2\n";
}
return 0;
}
```
输出结果为`str1 does not equal str2`,因为`str1`和`str2`的内容不同。如果想要比较字符串忽略大小写,可以使用字符串比较函数`strcasecmp`来实现。
阅读全文