list::push_back

Fügt ein Element am Ende einer Liste hinzu.

void push_back(

void push_back(
   Type&& _Val
);

Parameter

Parameter

Description

_Val

Das Element am Ende der Liste hinzugefügt.

Hinweise

Wenn eine Ausnahme ausgelöst wird, wird die Liste unverändert lassen und die Ausnahme wird erneut ausgelöst.

Beispiel

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

Anforderungen

Header: <list>

Namespace: std

Siehe auch

Referenz

list Class

Standardvorlagenbibliothek