Condividi tramite


hash_multiset::cend

[!NOTA]

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

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

const_iterator cend( ) const;

Valore restituito

Un iteratore bidirezionale const destinato alla posizione che è l'ultimo elemento a hash_multiset Class.Se hash_multiset è vuoto, quindi hash_multiset::cend == hash_multiset::begin.

Note

cend viene utilizzato per verificare se un iteratore raggiunge la fine del hash_multiset.Il valore restituito da cend 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_cend.cpp
// compile with: /EHsc
#include <hash_multiset>
#include <iostream>

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

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

Requisiti

intestazione: <hash_set>

Stdext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_multiset Class

Libreria di modelli standard