std::vector::at
来自cppreference.com
该页由英文版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 element 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 if !(pos < size()).
[编辑] 复杂性
常数
[编辑] 另请参阅
访问指定的元素 (公共成员函数) |