📜  C++中关系运算符(==)和std:: 字符串::compare()的区别

📅  最后修改于: 2021-09-14 01:19:51             🧑  作者: Mango

使用关系运算符比较字符串,使用 compare()

关系运算符与 std:: 字符串::compare()

  1. 返回值:关系运算符返回布尔值,而 compare() 返回无符号整数。
  2. 参数:关系运算符只需要两个字符串来执行比较,一个是被比较的,另一个是供参考的,而 compare() 可以接受不同的参数来相应地执行某些任务。
  3. 比较方法:关系运算符根据当前字符特征按字典顺序比较字符,而 compare() 可以为每个字符串处理多个参数,以便您可以通过其索引和长度指定子字符串。
  4. 操作:我们可以直接在字符串的一部分中进行比较,使用 compare() ,否则对于关系运算符来说这是一个相当长的过程。
    例:*从STR2的第四位置3个字符比较3个字符从STR1的第三位置。
    * str1 = "GeeksforGeeks"
    * str2 = "HelloWorld!"

    使用 compare() :

    // CPP code to perform comparison using compare()
    #include 
    using namespace std;
      
    void usingCompare(string str1, string str2)
    {
        // Direct Comparison
        if (str1.compare(2, 3, str2, 3, 3) == 0)
            cout << "Both are same";
        else
            cout << "Not equal";
    }
      
    // Main function
    int main()
    {
        string s1("GeeksforGeeks");
        string s2("HelloWorld !");
        usingCompare(s1, s2);
      
        return 0;
    }
    

    输出:

    Not equal
    

    使用关系运算符:

    // CPP code for comparison using relational operator
    #include 
    using namespace std;
      
    void relational_operation(string s1, string s2)
    {
        int i, j;
      
        // Lexicographic comparison
        for (i = 2, j = 3; i <= 5 && j <= 6; i++, j++) {
            if (s1[i] != s2[j])
                break;
        }
        if (i == 6 && j == 7)
            cout << "Equal";
        else
            cout << "Not equal";
    }
      
    // Main function
    int main()
    {
        string s1("GeeksforGeeks");
        string s2("HelloWorld !");
        relational_operation(s1, s2);
      
        return 0;
    }
    

    输出:

    Not equal
    

    我们可以清楚地观察到在使用关系运算符时需要经过的额外处理。

想要从精选的视频和练习题中学习,请查看C++ 基础课程,从基础到高级 C++ 和C++ STL 课程,了解基础加 STL。要完成从学习语言到 DS Algo 等的准备工作,请参阅完整的面试准备课程