Udostępnij za pośrednictwem


hash_multiset::rend

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multiset Class.

Zwraca iteratora, że adresy lokalizacji, zastępując ostatni element w hash_multiset odwrócone.

const_reverse_iterator rend( ) const; 
reverse_iterator rend( );

Wartość zwracana

Sterująca wstecznego dwukierunkowe, że adresy lokalizacji, zastępując ostatni element w hash_multiset odwrócone (lokalizacja było poprzedzone pierwszy element w stałe hash_multiset).

Uwagi

rendjest używany z hash_multiset odwrócone tylko jako koniec jest używana z hash_multiset.

Jeśli wartość zwracana przez rend jest przypisany do const_reverse_iterator, a następnie obiektu hash_multiset nie można modyfikować.Jeśli wartość zwracana przez rend jest przypisany do reverse_iterator, a następnie można zmodyfikować obiektu hash_multiset.Wartość zwracana przez rend nie należy usunąć odwołania.

rendmożna sprawdzać, czy osiągnął koniec swojej hash_multiset sterująca wstecznego.

W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.

Przykład

// hash_multiset_rend.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>::reverse_iterator hms1_rIter;
   hash_multiset <int>::const_reverse_iterator hms1_crIter;

   hms1.insert( 10 );
   hms1.insert( 20 );
   hms1.insert( 30 );

   hms1_rIter = hms1.rend( );
   hms1_rIter--;
   cout << "The last element in the reversed hash_multiset is "
        << *hms1_rIter << "." << endl;

   // end can be used to terminate an iteration 
   // through a hash_multiset in a forward order
   cout << "The hash_multiset is: ";
   for ( hms1_Iter = hms1.begin( ) ; hms1_Iter != hms1.end( );
         hms1_Iter++ )
      cout << *hms1_Iter << " ";
   cout << "." << endl;

   // rend can be used to terminate an iteration 
   // throught a hash_multiset in a reverse order
   cout << "The reversed hash_multiset is: ";
   for ( hms1_rIter = hms1.rbegin( ) ; hms1_rIter != hms1.rend( );
         hms1_rIter++ )
      cout << *hms1_rIter << " ";
   cout << "." << endl;

   hms1_rIter = hms1.rend( );
   hms1_rIter--;
   hms1.erase ( *hms1_rIter );

   hms1_rIter = hms1.rend( );
   hms1_rIter--;
   cout << "After the erasure, the last element in the "
        << "reversed hash_multiset is " << *hms1_rIter << "."
        << endl;
}
  
  
  
  

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: stdext

Zobacz też

Informacje

hash_multiset Class

Standardowa biblioteka szablonu