list::push_front (STL/CLR)
첫 번째 새 요소를 추가합니다.
void push_front(value_type val);
설명
요소 값을 가진 멤버 함수 삽입 val 제어 되는 시퀀스의 시작 부분입니다.목록에 있는 다른 요소의 앞에 사용 합니다.
예제
// cliext_list_push_front.cpp
// compile with: /clr
#include <cliext/list>
int main()
{
cliext::list<wchar_t> c1;
c1.push_front(L'a');
c1.push_front(L'b');
c1.push_front(L'c');
// display contents " c b a"
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
요구 사항
헤더: < cliext/목록 >
네임 스페이스: cliext