list::erase
Usuwa element lub zakres elementów na liście z określonych pozycjach.
iterator erase(
iterator _Where
);
iterator erase(
iterator _First,
iterator _Last
);
Parametry
_Where
Położenie elementu, który ma zostać usunięty z listy._First
Pozycja pierwszego elementu usunięte z listy._Last
Pozycja tylko poza ostatni element usunięty z listy.
Wartość zwracana
Iteratora dwukierunkowe, który wyznacza pierwszy element pozostały poza elementy usunięte lub wskaźnik na końcu listy, jeśli element nie istnieje.
Uwagi
Nie zmiany alokacji występuje więc Iteratory i odwołania stają się nieprawidłowe tylko dla elementów wymazany.
wymazywanie nigdy nie zgłasza wyjątek.
Przykład
// list_erase.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
list <int>::iterator Iter;
c1.push_back( 10 );
c1.push_back( 20 );
c1.push_back( 30 );
c1.push_back( 40 );
c1.push_back( 50 );
cout << "The initial list is:";
for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
cout << " " << *Iter;
cout << endl;
c1.erase( c1.begin( ) );
cout << "After erasing the first element, the list becomes:";
for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
cout << " " << *Iter;
cout << endl;
Iter = c1.begin( );
Iter++;
c1.erase( Iter, c1.end( ) );
cout << "After erasing all elements but the first, the list becomes: ";
for (Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
cout << " " << *Iter;
cout << endl;
}
Wymagania
Nagłówek: <list>
Obszar nazw: std