IHash<TKey,TValue>.find 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找与指定键匹配的元素。
public:
void ^ find(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % unnamedParam1, TKey _Keyval);
public void find (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> unnamedParam1, TKey _Keyval);
abstract member find : ContainerBidirectionalIterator * 'Key -> unit
Public Function find (ByRef unnamedParam1 As ContainerBidirectionalIterator(Of TValue), _Keyval As TKey) As Void
参数
- unnamedParam1
- ContainerBidirectionalIterator<TValue>
一个迭代器,指定找到的元素之一;如果找不到元素,则为 end(ContainerBidirectionalIterator<TValue>)。
- _Keyval
- TKey
要搜索的键值。
注解
有关详细信息,请参阅 hash_map::find (STL/CLR) 、 hash_multimap::find (STL/CLR) 、 hash_set::find (STL/CLR) 和 hash_multiset::find (STL/CLR) 。