Udostępnij za pośrednictwem


list::push_back

Dodaje element na końcu listy.

void push_back(

void push_back(
   Type&& _Val
);

Parametry

Parametr

Opis

_Val

Element dodany na końcu listy.

Uwagi

Jeśli wyjątek listy pozostaje niezmieniony i wyjątek jest rethrown.

Przykład

// 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;
}
  

Wymagania

Nagłówek: <list>

Obszar nazw: std

Zobacz też

Informacje

list Class

Standardowa biblioteka szablonu