C++ 字符串库 - 追加


描述

它通过在当前值的末尾附加附加字符来扩展字符串。

宣言

以下是 std::string::append 的声明。

string& append (const string& str);

C++11

string& append (const string& str);

C++14

string& append (const string& str);

参数

  • str - 它是一个字符串对象。

  • c - 它是一个字符对象。

返回值

它返回*this。

例外情况

如果抛出异常,则字符串不会发生任何变化。

例子

在下面的 std::string::append 示例中。

#include <iostream>
#include <string>

int main () {
   std::string str;
   std::string str2="Writing ";
   std::string str3="print 10 and then 5 more";

   str.append(str2);
   str.append(str3,6,3);
   str.append("dots are cool",5);
   str.append("here: ");
   str.append(10u,'.');
   str.append(str3.begin()+8,str3.end());
   str.append<int>(5,0x2E);
   std::cout << str << '\n';
   return 0;
}
Writing 10 dots here: .......... and then 5 more.....
字符串.htm