hash_multiset::end
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_multiset Class.
Restituisce un iteratore destinato alla posizione che è l'ultimo elemento a hash_multiset.
const_iterator end( ) const;
iterator end( );
Valore restituito
Un iteratore bidirezionale destinato alla posizione che è l'ultimo elemento a hash_multiset.Se il hash_multiset è vuoto, quindi hash_multiset::begin di == di hash_multiset::end.
Note
end viene utilizzato per verificare se un iteratore raggiunge la fine del hash_multiset.Il valore restituito da end non è possibile dereferenziare.
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_end.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.end( );
hms1_Iter--;
cout << "The last element of hms1 is " << *hms1_Iter << endl;
hms1.erase( hms1_Iter );
// The following 3 lines would err because the iterator is const
// hms1_cIter = hms1.end( );
// hms1_cIter--;
// hms1.erase( hms1_cIter );
hms1_cIter = hms1.end( );
hms1_cIter--;
cout << "The last element of hms1 is now " << *hms1_cIter << endl;
}
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: