C++中怎么比较字符串

avatar
作者
筋斗云
阅读量:0

在C++中比较字符串可以使用以下几种方法:

  1. 使用compare()函数:可以使用字符串类的compare()函数来比较两个字符串的大小。如果两个字符串相等,返回值为0;如果第一个字符串大于第二个字符串,返回值大于0;如果第一个字符串小于第二个字符串,返回值小于0。
#include <iostream> #include <string>  int main() {     std::string str1 = "hello";     std::string str2 = "world";      int result = str1.compare(str2);      if (result == 0) {         std::cout << "Two strings are equal" << std::endl;     } else if (result > 0) {         std::cout << "str1 is larger than str2" << std::endl;     } else {         std::cout << "str1 is smaller than str2" << std::endl;     }      return 0; } 
  1. 使用==运算符:也可以直接使用==运算符来比较两个字符串是否相等。
#include <iostream> #include <string>  int main() {     std::string str1 = "hello";     std::string str2 = "world";      if (str1 == str2) {         std::cout << "Two strings are equal" << std::endl;     } else {         std::cout << "Two strings are not equal" << std::endl;     }      return 0; } 
  1. 使用>和<运算符:可以直接使用>和<运算符来比较两个字符串的大小。
#include <iostream> #include <string>  int main() {     std::string str1 = "hello";     std::string str2 = "world";      if (str1 > str2) {         std::cout << "str1 is larger than str2" << std::endl;     } else {         std::cout << "str1 is smaller than str2" << std::endl;     }      return 0; } 

这些是在C++中比较字符串的一些常用方法,开发者可以根据自己的需求选择合适的方法来比较字符串。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!