string 比较
来自 https://blog.csdn.net/qq_33210042/article/details/119390196
C++ string字符串的比较是否相等 可以使用compare 也可以使用"=="
1 使用比较运算符 == >
#include <iostream> #include <string> using namespace std; int main() { string a = "hello"; string b = "hello"; // 使用比较运算符 if (a == b) { cout << "a与b相等" << endl; } else { cout << "a与b不相等" << endl; }
}; |
原理:两个字符串自左向右逐个字符相比(按ASCII值大小相比较)。
#include<iostream> #include<cstring> using namespace std; int main(){ string s1 = "123457"; string s2 = "127"; if(s1 > s2)printf("s1\n"); else printf("s2\n"); return 0; } // output:s2 |
2 使用compare() 函数
compare 比较2个字符串,当2个字符串相等的时候返回 0
#include <iostream> #include <string> using namespace std; int main() { string a = "hello"; string b = "hello"; // 使用compare函数 if (a.compare(b) == 0) { cout << "a与b相等" << endl; } else { cout << "a与b不相等" << endl; } }; |