c++中,编写一个程序,将两个字符串了连接起来,结果取代第一个字符串。要求用string方法。

如题所述

std::string a= "0123";
std::string b = "4567";
a = a + b;
温馨提示:答案为网友推荐,仅供参考
相似回答