共用方式為


set::find (STL/CLR)

尋找符合指定之索引鍵的項目。

    iterator find(key_type key);

參數

  • Key - 索引鍵
    若要搜尋的索引鍵值。

備註

如果受控制序列中的至少一個項目具有相同的順序與key,成員函式會傳回 iterator 指定其中一個那些項目。 否則它會傳回set::end (STL/CLR)()。您可以用它來目前尋找符合指定的索引鍵之受控制序列中的項目。

範例

// cliext_set_find.cpp 
// compile with: /clr 
#include <cliext/set> 
 
typedef cliext::set<wchar_t> Myset; 
int main() 
    { 
    Myset c1; 
    c1.insert(L'a'); 
    c1.insert(L'b'); 
    c1.insert(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("find {0} = {1}", 
        L'A', c1.find(L'A') != c1.end()); 
    System::Console::WriteLine("find {0} = {1}", 
        L'b', *c1.find(L'b')); 
    System::Console::WriteLine("find {0} = {1}", 
        L'C', c1.find(L'C') != c1.end()); 
    return (0); 
    } 
 
  

描述

請注意, find並不保證這幾個找到的項目。

需求

標頭: < cliext/設定 >

Namespace: cliext

請參閱

參考

set (STL/CLR)

set::equal_range (STL/CLR)

set::lower_bound (STL/CLR)

set::upper_bound (STL/CLR)