다음을 통해 공유


list::push_back

요소는 목록의 끝에 추가합니다.

void push_back(

void push_back(
   Type&& _Val
);

매개 변수

Parameter

설명

_Val

요소가 목록 끝에 추가 합니다.

설명

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

예제

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

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

   c1.push_back( 2 );
   if ( c1.size( ) != 0 )
      cout << "New last element: " << c1.back( ) << endl;

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

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

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리