std::basic_string::at

来自cppreference.com
< cpp‎ | string‎ | basic string

 
 
 
std::basic_string
 
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 -
返回的字符位置
原文:
position of the character to return
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 返回值

引用到所请求的字符
原文:
reference to the requested character
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 例外

如果std::out_of_range抛出pos >= size()
原文:
throws std::out_of_range if pos >= size()
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 复杂度

常数
原文:
Constant
文本通过谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击此处查看指示。

[编辑] 另请参阅

访问指定位置的字符
(公开成员函数) [编辑]