hash_multiset::begin
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_multiset Class.
Restituisce un iteratore destinato al primo elemento in hash_multiset.
const_iterator begin( ) const;
iterator begin( );
Valore restituito
Un iteratore bidirezionale destinato al primo elemento in hash_multiset o la posizione che gestisce un hash_multiset vuoto.
Note
Se il valore restituito begin viene assegnato a const_iterator, gli elementi nell'oggetto del hash_multiset non possono essere modificati.Se il valore restituito begin viene assegnato a iterator, gli elementi nell'oggetto del hash_multiset possono essere modificati.
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_begin.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hash_multiset <int>::iterator hms1_Iter;
hash_multiset <int>::const_iterator hms1_cIter;
hms1.insert( 1 );
hms1.insert( 2 );
hms1.insert( 3 );
hms1_Iter = hms1.begin( );
cout << "The first element of hms1 is " << *hms1_Iter << endl;
hms1_Iter = hms1.begin( );
hms1.erase( hms1_Iter );
// The following 2 lines would err because the iterator is const
// hms1_cIter = hms1.begin( );
// hms1.erase( hms1_cIter );
hms1_cIter = hms1.begin( );
cout << "The first element of hms1 is now " << *hms1_cIter << endl;
}
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: