std::unordered_set::end(int), std::unordered_set::cend(int)
来自cppreference.com
< cpp | container | unordered set
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iterator end( size_type n ); |
(C++11 起) | |
const_iterator end( size_type n ) const; |
(C++11 起) | |
const_iterator cend( size_type n ) const; |
(C++11 起) | |
返回一个迭代器的元素之后的最后一个元素桶指数
n
. 原文:
Returns an iterator to the element following the last element of the bucket with index
n
. 。这个元素作为一个占位符,试图访问它导致未定义的行为.
原文:
. This element acts as a placeholder, attempting to access it results in undefined behavior.
目录 |
[编辑] 参数
n | - | 的索引访问铲斗
|
[编辑] 返回值
迭代器的最后一个元素的元素
原文:
iterator to the element following the last element
[编辑] 复杂性
常数
[编辑] 另请参阅
返回一个迭代器指定的桶开始 原文: returns an iterator to the beginning of the specified bucket (公共成员函数) |