list::remove
목록에 지정 된 값과 일치 하는 요소를 지웁니다.
void remove(
const Type& _Val
);
매개 변수
- _Val
어떤 요소에 의해 보유 하는 경우 목록에서 해당 요소 제거 됩니다 값입니다.
설명
남은 요소 순서를 영향을 받습니다.
예제
// list_remove.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
list <int>::iterator c1_Iter, c2_Iter;
c1.push_back( 5 );
c1.push_back( 100 );
c1.push_back( 5 );
c1.push_back( 200 );
c1.push_back( 5 );
c1.push_back( 300 );
cout << "The initial list is c1 =";
for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
cout << " " << *c1_Iter;
cout << endl;
list <int> c2 = c1;
c2.remove( 5 );
cout << "After removing elements with value 5, the list becomes c2 =";
for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
cout << " " << *c2_Iter;
cout << endl;
}
요구 사항
헤더: <list>
네임 스페이스: std