命名空间
变体
操作

std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::contains

来自 cppreference.com
 
 
 
 
bool contains( const Key& key ) const;
(1) (自 C++20 起)
template< class K >
bool contains( const K& x ) const;
(2) (自 C++20 起)
1) 检查容器中是否存在键等效于 key 的元素。
2) 检查是否存在键与值 x 等效 的元素。仅当 Hash::is_transparentKeyEqual::is_transparent 有效且分别表示一种类型时,此重载参与重载解析。假设此类 Hash 可用 KKey 类型调用,并且 KeyEqual 是透明的,这将共同允许在不构造 Key 实例的情况下调用此函数。

内容

[编辑] 参数

key - 要搜索的元素的键值
x - 任何可以与键透明比较的类型的值

[编辑] 返回值

如果存在这样的元素,则为 true,否则为 false

[编辑] 复杂度

平均情况下为常数,最坏情况下为容器大小的线性。

[编辑] 示例

#include <iostream>
#include <unordered_map>
 
int main()
{
    std::unordered_multimap<int, char> example{{1, 'a'}, {2, 'b'}};
 
    for (int x : {2, 5})
        if (example.contains(x))
            std::cout << x << ": Found\n";
        else
            std::cout << x << ": Not found\n";
}

输出

2: Found
5: Not found

[编辑] 另请参阅

查找具有特定键的元素
(公共成员函数) [编辑]
返回与特定键匹配的元素数量
(公共成员函数) [编辑]
返回与特定键匹配的元素范围
(公共成员函数) [编辑]