std::basic_string::push_back

来自cppreference.com
< cpp‎ | string‎ | basic string

 
 
 
std::basic_string
 
void push_back( CharT ch );

Appends the given character ch to the end of the string.

目录

[编辑] 参数

ch - the character to append

[编辑] 返回值

(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂度

恒定
原文:
Constant.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

(C++11)
删除最后一个字符
原文:
removes the last character
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公开成员函数) [edit]