c++ 字符串相加

 1. append

   string a= "xxx";

  string b="yyy";

  a.append(b);

  结果 a = “xxxyyy”;

原文地址:https://www.cnblogs.com/indifferent/p/11880436.html