Syntax:
#include <string>
void push_back( Char c );
push_back()関数は、文字列の最後に"c"を追加します。
例えば、次のコードでは、10文字を文字列に追加しています。
string the_string;
for( int i = 0; i < 10; i++ )
the_string.push_back( i+'a' );
実行結果
push_back() の実行時間は、定数時間です。
Related Topics: assign, insert