std::unordered_set::count
来自cppreference.com
< cpp | container | unordered set
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
size_type count( const Key& key ) const; |
||
返回与关键
key
的元素的数目.原文:
Returns the number of elements with key
key
.目录 |
[编辑] 参数
key | - | 键值的元素数
|
[编辑] 返回值
号码的关键
key
的元素[编辑] 复杂性
Amortized constant on average, worst case linear in the size of the container.
[编辑] 另请参阅
发现与特定键的元素 (公共成员函数) | |
回报在一个特定的键匹配的元素 原文: returns range of elements matching a specific key (公共成员函数) |