strcmp用法 c++
时间: 2024-10-12 19:01:21 浏览: 41
`strcmp`是C++标准库中的一个函数,它通常用于比较两个字符串是否相等。`strcmp(const char* str1, const char* str2)` 函数接受两个`const char *`类型的指针作为参数,分别指向要比较的字符串。
当`str1`和`str2`完全匹配时,`strcmp`返回0;如果`str1`小于`str2`,则返回负数;如果`str1`大于`str2`,则返回正数。这个函数区分大小写,即大写字母会比小写字母排在前面。
例如:
```cpp
#include <cstring>
int main() {
if (strcmp("hello", "world") == 0) {
std::cout << "Strings are equal" << std::endl;
} else {
std::cout << "Strings are not equal" << std::endl;
}
return 0;
}
```
在这个例子中,`strcmp`会返回一个负数,因为"hello"小于"world"。
相关问题
C++strcmp用法
C++中的strcmp()函数用于比较两个字符串是否相等。该函数返回一个整数值,如果两个字符串相等,则返回0,如果第一个字符串小于第二个字符串,则返回一个小于0的值,如果第一个字符串大于第二个字符串,则返回一个大于0的值。
以下是一个使用strcmp()函数比较两个字符串的例子:
```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;
}
```
输出结果为:
```
str1 and str2 are not equal
str1 and str3 are equal
```
c++中strcmp用法
strcmp是C++中用于比较两个字符串的函数,其用法如下:
```c++
int strcmp(const char* str1, const char* str2);
```
其中,str1和str2分别为需要比较的两个字符串,返回值为int类型,表示两个字符串的大小关系,具体返回值如下:
- 若str1小于str2,则返回值小于0;
- 若str1等于str2,则返回值等于0;
- 若str1大于str2,则返回值大于0。
示例代码如下:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[] = "hello";
char str2[] = "world";
int result;
result = strcmp(str1, str2);
if (result < 0) {
cout << "str1 is less than str2" << endl;
}
else if (result == 0) {
cout << "str1 is equal to str2" << endl;
}
else {
cout << "str1 is greater than str2" << endl;
}
return 0;
}
```
输出结果为:
```
str1 is less than str2
```
阅读全文