ITree<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>
指定其中一個所找到之項目的 Iterator,如果找不到項目則為 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) 。