21xrx.com
2024-11-08 23:20:35 Friday
登录
文章检索 我的文章 写文章
C++编程教程:如何比较两个字符串?
2023-07-09 01:42:54 深夜i     --     --
C++ 编程 教程 字符串比较 字符串函数

在C++编程中,比较两个字符串的方法是非常基础的,特别是在字符串处理和排序时。本文将介绍两种方法比较字符串。

方法一:使用相等运算符(==)进行比较

相等运算符(==)用于比较两个字符串是否完全相同。该方法非常基础,使用简单,当两个字符串相同时,该运算符返回 true,否则返回 false。

以下是示例代码:

#include

#include

using namespace std;

int main(){

  string str1 = "Hello";

  string str2 = "World";

  string str3 = "Hello";

  if (str1 == str2)

    cout << "str1 is equal to str2" << endl;

  else

    cout << "str1 is NOT equal to str2" << endl;

  if (str1 == str3)

    cout << "str1 is equal to str3" << endl;

  else

    cout << "str1 is NOT equal to str3" << endl;

  return 0;

}

该代码将输出以下结果:

str1 is NOT equal to str2

str1 is equal to str3

方法二:使用字符串库函数进行比较

C++标准库提供了多个字符串的比较函数,如 strcmp()、strncmp()、memcmp()等。这些函数返回值为整数,值为0表示两个字符串相等。同样的,使用这些字符串库函数也能完成上述相等运算符(==)的功能。

以下是示例代码,分别使用strcmp()和strncmp()进行比较:

#include

#include

using namespace std;

int main(){

  char str1[] = "Hello";

  char str2[] = "World";

  char str3[] = "Hello";

  if (strcmp(str1, str2) == 0)

    cout << "str1 is equal to str2" << endl;

  else

    cout << "str1 is NOT equal to str2" << endl;

  if (strcmp(str1, str3) == 0)

    cout << "str1 is equal to str3" << endl;

  else

    cout << "str1 is NOT equal to str3" << endl;

  if (strncmp(str1, str2, 3) == 0)

    cout << "The first 3 characters of str1 are equal to those of str2" << endl;

  else

    cout << "The first 3 characters of str1 are NOT equal to those of str2" << endl;

  return 0;

}

该代码将输出以下结果:

str1 is NOT equal to str2

str1 is equal to str3

The first 3 characters of str1 are equal to those of str2

总结

比较字符串在C++编程中是非常常见和基础的操作。可以使用相等运算符(==)或者字符串库函数(如 strcmp()和strncmp())进行比较。特别注意的是,使用字符串库函数需要遵循一些规范,如strncmp()需要传入比较的字符数,否则将产生不可预料的结果。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复