共用方式為


hash_multiset::find

注意事項注意事項

這個 API 已經過時。這個選項是 unordered_multiset Class

傳回位址的 Iterator 一個項目位置有索引鍵等於指定的索引鍵 hash_multiset 的。

iterator find(
   const Key& _Key
);
const_iterator find(
   const Key& _Key
) const;

參數

  • _Key
    項目的排序鍵將符合的引數索引鍵從搜尋依據的 hash_multiset 的。

傳回值

處理項目位置等於指定按鍵或解決成功最後一個項目位置 hash_multiset 的 iteratorconst_iterator ,如果符合沒有為索引鍵中找到。

備註

解決 hash_multiset 的項目排序鍵是 equivalent 引數索引鍵在一個二進位述詞下會根據的順序小於可比性關聯的成員函式傳回 Iterator。

如果的傳回值指派給 const_iteratorfind ,無法修改 hash_multiset 物件。 如果傳回值 find 指派給 iterator,可以修改 hash_multiset 物件。

在 Visual C++ .NET Pocket PC, <hash_map><hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間

範例

// hash_multiset_find.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hms1;
   hash_multiset <int> :: const_iterator hms1_AcIter, hms1_RcIter;
   
   hms1.insert( 10 );
   hms1.insert( 20 );
   hms1.insert( 30 );

   hms1_RcIter = hms1.find( 20 );
   cout << "The element of hash_multiset hms1 with a key of 20 is: "
        << *hms1_RcIter << "." << endl;

   hms1_RcIter = hms1.find( 40 );

   // If no match is found for the key, end( ) is returned
   if ( hms1_RcIter == hms1.end( ) )
      cout << "The hash_multiset hms1 doesn't have an element "
           << "with a key of 40." << endl;
   else
      cout << "The element of hash_multiset hms1 with a key of 40 is: "
           << *hms1_RcIter << "." << endl;

   // The element at a specific location in the hash_multiset can be found 
   // by using a dereferenced iterator addressing the location
   hms1_AcIter = hms1.end( );
   hms1_AcIter--;
   hms1_RcIter = hms1.find( *hms1_AcIter );
   cout << "The element of hms1 with a key matching "
        << "that of the last element is: "
        << *hms1_RcIter << "." << endl;
}
  
  
  

需求

標題: <hash_set>

命名空間: stdext

請參閱

參考

hash_multiset Class

標準樣板程式庫