constexpr const_reference back() const;
概要
末尾文字を取得する。
要件
戻り値
return data()[size() - 1];
例外
投げない
例
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv = "Hello World";
char c = sv.back();
assert(c == 'd');
}
xxxxxxxxxx
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv = "Hello World";
char c = sv.back();
assert(c == 'd');
}
出力
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??