list::emplace_back
Dodaje element skonstruowane w miejsce na początku listy.
void emplace_back(
Type&& _Val
);
Parametry
Parametr |
Opis |
_Val |
Element dodany do końca list Class. |
Uwagi
Jeśli wyjątek list jest w postaci niezmienionej lewej i wyjątek jest rethrown.
Przykład
// 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;
}
Wymagania
Nagłówek: <list>
Obszar nazw: std