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)
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 复杂度

恒定
原文:
Constant.
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 另请参阅

(C++11)
删除最后一个字符
原文:
removes the last character
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

(公开成员函数) [编辑]