Udostępnij za pośrednictwem


multiset::end

Zwraca iterację likwidującą lokalizacji przejmującej ostatni element zestaw wielokrotny.

const_iterator end( ) const; 
iterator end( );

Wartość zwracana

Iteratora dwukierunkowy likwidującą lokalizacji przejmującej ostatni element zestaw wielokrotny.Jeśli zestaw wielokrotny jest pusty, a następnie multiset::end == multiset::begin.

Uwagi

koniec jest używany do testowania, czy iterację osiągnął koniec jego zestaw wielokrotny.Wartość zwracana przez celu nie należy usunąć odwołania.

Przykład

// multiset_end.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;   
   multiset <int> ms1;
   multiset <int> :: iterator ms1_Iter;
   multiset <int> :: const_iterator ms1_cIter;
   
   ms1.insert( 1 );
   ms1.insert( 2 );
   ms1.insert( 3 );

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

   ms1.erase( ms1_Iter );

   // The following 3 lines would err as the iterator is const
   // ms1_cIter = ms1.end( );
   // ms1_cIter--;
   // ms1.erase( ms1_cIter );

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

Wymagania

Nagłówek: <set>

Obszar nazw: std

Zobacz też

Informacje

multiset Class

Standardowa biblioteka szablonu