void push_back(charT c); // (1) C++03
constexpr void push_back(charT c); // (1) C++20
概要
末尾に要素を追加する。
効果
append(static_cast<size_type>(1), c)
例
#include <iostream>
#include <string>
int main()
{
std::string s = "hell";
// 末尾に'o'を追加する
s.push_back('o');
std::cout << s << std::endl;
}
出力
hello