c++字符串比較是否相等的方法是什么

c++
小億
499
2024-04-01 09:43:05

在C++中,可以使用==運(yùn)算符來(lái)比較兩個(gè)字符串是否相等。例如:

#include <iostream>
#include <string>

int main() {
    std::string str1 = "hello";
    std::string str2 = "world";

    if (str1 == str2) {
        std::cout << "The strings are equal." << std::endl;
    } else {
        std::cout << "The strings are not equal." << std::endl;
    }

    return 0;
}

上面的代碼中,使用==運(yùn)算符來(lái)比較str1str2是否相等,如果相等則輸出"The strings are equal.“,否則輸出"The strings are not equal.”。

2