名前空間
変種
操作

push_back

提供:cppreference.com

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' );

実行結果

    abcdefghij

push_back() の実行時間は、定数時間です。

Related Topics: assign, insert