Condividi tramite


hash_set::end

[!NOTA]

Questo API è obsoleto.L'alternativa consiste unordered_set Class.

Restituisce un iteratore destinato alla posizione che è l'ultimo elemento a hash_set.

const_iterator end( ) const; 
iterator end( );

Valore restituito

Un iteratore bidirezionale destinato alla posizione che è l'ultimo elemento a hash_set.Se il hash_set è vuoto, quindi hash_set::begin di == di hash_set::end.

Note

end viene utilizzato per verificare se un iteratore raggiunge la fine del hash_set.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_set_end.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_set <int> hs1;
   hash_set <int> :: iterator hs1_Iter;
   hash_set <int> :: const_iterator hs1_cIter;
   
   hs1.insert( 1 );
   hs1.insert( 2 );
   hs1.insert( 3 );

   hs1_Iter = hs1.end( );
   hs1_Iter--;
   cout << "The last element of hs1 is " << *hs1_Iter << endl;

   hs1.erase( hs1_Iter );

   // The following 3 lines would err because the iterator is const:
   // hs1_cIter = hs1.end( );
   // hs1_cIter--;
   // hs1.erase( hs1_cIter );

   hs1_cIter = hs1.end( );
   hs1_cIter--;
   cout << "The last element of hs1 is now " << *hs1_cIter << endl;
}
  

Requisiti

intestazione: <hash_set>

Stdext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_set Class

Libreria di modelli standard