阅读量:0
在C++中,可以使用==
运算符来判断两个字符串是否相等。具体方法如下:
#include <iostream> #include <string> int main() { std::string str1 = "Hello"; std::string str2 = "World"; if (str1 == str2) { std::cout << "两个字符串相等" << std::endl; } else { std::cout << "两个字符串不相等" << std::endl; } return 0; }
在这个例子中,我们定义了两个字符串str1
和str2
,然后使用==
运算符来比较它们的值。如果两个字符串相等,就会输出"两个字符串相等";否则,输出"两个字符串不相等"。