美文网首页
5.string字符串比较

5.string字符串比较

作者: lxr_ | 来源:发表于2021-04-04 14:57 被阅读0次
    #include<iostream>
    using namespace std;
    
    //  =  返回  0
    //  >  返回  1
    //  <  返回  -1
    
    void test0501()
    {
        string str1 = "hello";
        string str2 = "xello";
    
        if (str1.compare(str2) == 0)
        {
            cout << "str1=str2" << endl;
        }
        else if (str1.compare(str2) > 0)
        {
            cout << "str1>str2" << endl;
        }
        else
        {
            cout << "str1<str2" << endl;
        }
    }
    
    int main()
    {
        test0501();
    
        system("pause");
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:5.string字符串比较

          本文链接:https://www.haomeiwen.com/subject/oxpxkltx.html