Udostępnij za pośrednictwem


list::emplace_back

Dodaje element skonstruowane w miejscu na początku listy.

void emplace_back(    Type&& _Val );

Parametry

Parametr

Opis

_Val

Element dodany do końca list — Klasa.

Uwagi

Jeśli wyjątek list jest niezmieniony w lewo i jest rethrown wyjątek.

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: < listy >

Przestrzeń nazw: std

Zobacz też

Informacje

list — Klasa

Standardowa biblioteka szablonów