다음을 통해 공유


list::push_front

목록 시작 부분에 요소를 추가합니다.

void push_front(
   const Type& _Val
);
void push_front(
   Type&& _Val
); 

매개 변수

Parameter

설명

_Val

목록 시작 부분에 추가할 요소입니다.

설명

예외가 throw 되 면 목록은 변경 되지 않은 한 예외가 다시 throw 됩니다.

예제

// list_push_front.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
#include <string>

int main( ) 
{
   using namespace std;
   list <int> c1;
   
   c1.push_front( 1 );
   if ( c1.size( ) != 0 )
      cout << "First element: " << c1.front( ) << endl;

   c1.push_front( 2 );
   if ( c1.size( ) != 0 )
      cout << "New first element: " << c1.front( ) << endl;

// move initialize a list of strings
   list <string> c2;
   string str("a");

   c2.push_front( move( str ) );
   cout << "Moved first element: " << c2.front( ) << endl;
}
  

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리