std::basic_string::at
来自cppreference.com
< cpp | string | basic string
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
reference at( size_type pos ); |
||
const_reference at( size_type pos ) const; |
||
返回指定位置处的字符
pos
的参考。执行边界检查,将被抛出的异常的类型std::out_of_range,无效的访问.原文:
Returns a reference to the character at specified location
pos
. Bounds checking is performed, exception of type std::out_of_range will be thrown on invalid access.目录 |
[编辑] 参数
pos | - | 返回的字符位置
|
[编辑] 返回值
引用到所请求的字符
[编辑] 例外
如果std::out_of_range抛出pos >= size()
原文:
throws std::out_of_range if pos >= size()
[编辑] 复杂度
常数
[编辑] 另请参阅
访问指定位置的字符 (公共成员函数) |