hash_multiset::find
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_multiset Class.
Restituisce un iteratore destinato alla posizione di un elemento in un hash_multiset con un equivalente principale in una chiave specificata.
iterator find(
const Key& _Key
);
const_iterator find(
const Key& _Key
) const;
Parametri
- _Key
La chiave dell'argomento da corrispondere alla chiave di ordinamento di un elemento da hash_multiset cercato.
Valore restituito
iteratore o const_iterator destinato alla posizione di un equivalente dell'elemento a una chiave specificata o destinato alla posizione che è l'ultimo elemento a hash_multiset se non viene rilevata alcuna corrispondenza della chiave.
Note
La funzione membro restituisce un iteratore destinato a un elemento in hash_multiset della chiave di ordinamento è equivalent alla chiave dell'argomento in un predicato binario che indica un ordinamento basato su una relazione di comparabilità minore di.
Se il valore restituito find viene assegnato a const_iterator, l'oggetto di hash_multiset non può essere modificato.Se il valore restituito find viene assegnato a iterator, l'oggetto di hash_multiset può essere modificato.
In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.
Esempio
// 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;
}
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: