std::deque::at
德克::
reference at( size_type pos | | |
---|---|---|
const_reference at( size_type pos ) const; | | |
返回对指定位置的元素的引用。pos
,进行边界检查。
如果pos
不在容器的范围内,是类型的例外。std::out_of_range
被扔了。
参数
pos | - | position of the element to return |
---|
返回值
引用请求的元素。
例外
std::out_of_range如果!(pos < size())...
复杂性
常量。
另见
operator[] | access specified element (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。