C++如何判断字符串相同
时间: 2023-11-24 07:06:36 浏览: 88
C++变位词问题分析
在 C++ 中,可以使用字符串比较函数 `strcmp` 来判断两个字符串是否相同。该函数在 `<cstring>` 头文件中定义,其原型如下:
```c++
int strcmp(const char* str1, const char* str2);
```
其中,`str1` 和 `str2` 分别为需要比较的两个字符串,函数返回值为 0 表示两个字符串相同,大于 0 表示 `str1` 大于 `str2`,小于 0 表示 `str1` 小于 `str2`。
示例代码如下:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str1[] = "hello";
char str2[] = "world";
char str3[] = "hello";
if (strcmp(str1, str2) == 0) {
cout << "str1 and str2 are equal" << endl;
} else {
cout << "str1 and str2 are not equal" << endl;
}
if (strcmp(str1, str3) == 0) {
cout << "str1 and str3 are equal" << endl;
} else {
cout << "str1 and str3 are not equal" << endl;
}
return 0;
}
```
阅读全文