void pop_back(); // (1) C++11
constexpr void pop_back(); // (1) C++20
概要
末尾の1要素を削除する。
要件
!empty()
効果
例外
投げない
例
#include <iostream>
#include <string>
int main()
{
std::string s = "helloo";
// 末尾の`o`を1つ削除する
s.pop_back();
std::cout << s << std::endl;
}
出力
hello
バージョン
言語
- C++11
処理系
- Clang: 3.0 ✅
- GCC: 4.7.3 ✅
- ICC: ?
- Visual C++: ?