CXX如何比较两个string是否相等
时间: 2023-11-04 15:05:01 浏览: 125
simplecrypto-cxx:一个简单易用的加密库
你可以使用C++中的字符串比较函数strcmp()来比较两个string是否相等。如果两个字符串相等,则返回值为0。你可以使用以下代码来比较两个字符串:
string str1 = "hello";
string str2 = "world";
if (strcmp(str1.c_str(), str2.c_str()) == 0) {
cout << "两个字符串相等" << endl;
} else {
cout << "两个字符串不相等" << endl;
}
阅读全文