string字符串比较
功能描述:
字符串之间的比较
比较方式:
通常用来比较两个字符串是否相等
函数原型:
代码如下:
#include <iostream>
using namespace std;
#include <cstring>
//string字符串比较void test01() {string str1 = "hello";string str2 = "hello";string str3 = "xello";if (str1.compare(str2) == 0) {cout << "str1 等于 str2" << endl;}if (str3.compare(str1) > 0) {cout << "str3 大于 str1" << endl;}
}int main() {test01();return 0;
}