list::emplace_back
Fügt ein Element hinzu, das direkt den Beginn der Liste erstellt wird.
void emplace_back(
Type&& _Val
);
Parameter
Parameter |
Description |
_Val |
Das Element hinzugefügt list Class Ende. |
Hinweise
Wenn eine Ausnahme ausgelöst wird, wird list unverändert gelassen und die Ausnahme wird erneut ausgelöst.
Beispiel
// list_emplace_back.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
list <string> c2;
string str("a");
c2.emplace_back( move( str ) );
cout << "Moved first element: " << c2.back( ) << endl;
}
Anforderungen
Header: <list>
Namespace: std