ITree<TKey,TValue>.find 方法

定义

查找与指定键匹配的元素。

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)

适用于