std::unordered_multimap::find
来自cppreference.com
< cpp | container | unordered multimap
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iterator find( const Key& key ); |
||
const_iterator find( const Key& key ) const; |
||
关键
key
发现的元素。 目录 |
[编辑] 参数
key | - | 要搜索的元素的键值
原文: key value of the element to search for |
[编辑] 返回值
迭代器关键
key
的元素。如果没有这样的元素被发现,过去的结束(见end()
)返回迭代器.原文:
Iterator to an element with key
key
. If no such element is found, past-the-end (see end()
) iterator is returned.[编辑] 复杂性
Amortized constant on average, worst case linear in the size of the container.
[编辑] 另请参阅
返回匹配的特定键的元素的数量 原文: returns the number of elements matching specific key (公共成员函数) | |
回报在一个特定的键匹配的元素 原文: returns range of elements matching a specific key (公共成员函数) |