美文网首页
c++字符串拼接

c++字符串拼接

作者: 送分童子笑嘻嘻 | 来源:发表于2019-11-06 15:53 被阅读0次

    使用append

    string s1 = "Hello ";  
        string s2 = "World! ";  
        string s3 = " China";  
        string s4;  
        s4.append(s1);  
        cout<<s4.c_str()<<endl;  
        s4.append(s2);  
        cout<<s4.c_str()<<endl;  
        s4.append(s3);  
        cout<<s4.c_str()<<endl;  
    

    相关文章

      网友评论

          本文标题:c++字符串拼接

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