constexpr const_reference operator[](size_type pos) const;
概要
任意の位置の文字を取得する。
要件
pos < size()
戻り値
return data()[pos];
例外
投げない
備考
std::basic_string::operator[]
はs[s.size()]
でCharT()
を返すが、std::basic_string_view
クラスのこの演算子では未定義動作を引き起こす
例
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv = "Hello World";
char c = sv[6];
assert(c == 'W');
}
xxxxxxxxxx
#include <cassert>
#include <string_view>
int main()
{
std::string_view sv = "Hello World";
char c = sv[6];
assert(c == 'W');
}
出力
バージョン
言語
- C++17
処理系
- Clang: 4.0 ✅
- GCC: 7.1 ✅
- ICC: ??
- Visual C++: ??