concurrent_unordered_set::find Method

查找与指定键匹配的元素。此功能是并发安全方法。

iterator find(
   const key_type& _Keyval
);

const_iterator find(
   const key_type& _Keyval
) const;

参数

  • _Keyval
    要搜索的键值。

返回值

迭代器指向与所提供的密钥第一个元素的位置或迭代器 end(),如果不存在这样的元素。

要求

**标头:**internal_concurrent_hash.h

**命名空间:**并发

请参见

参考

concurrent_unordered_set 类