Compartilhar via


hash_multiset::end

ObservaçãoObservação

este API é obsoleto.Uma alternativa é unordered_multiset Class.

Retorna um iterador atende o local que é bem-sucedido o último elemento em um hash_multiset.

const_iterator end( ) const; 
iterator end( );

Valor de retorno

Um iterador bidirecional atende o local que é bem-sucedido o último elemento em um hash_multiset.Se o hash_multiset está vazia, em seguida hash_multiset::begin de == de hash_multiset::end.

Comentários

end é usado para testar se um iterador atingiu o final do seu hash_multiset.o valor retornado por end não deve ser desreferenciado.

Em o Visual C++ .NET 2003, os membros dos arquivos de cabeçalho de <hash_map> e de <hash_set> não estão mais no namespace de STD, mas tenham sido portados em vez de stdext no namespace.Consulte O namespace de stdext para mais informações.

Exemplo

// 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;
}
  

Requisitos

Cabeçalho: <hash_set>

stdext denamespace:

Consulte também

Referência

hash_multiset Class

Standard Template Library