Udostępnij za pośrednictwem


unordered_multiset::emplace

Dodaje element zbudowane w miejscu.

template<class ValTy>
    iterator emplace(ValTy&& val);

Parametry

Parametr

Opis

ValTy

Typ argumentu w miejsce konstruktora.

val

Wartość do wstawienia.

Uwagi

Funkcja Członkowskie konstrukcje elementu X z vali zwraca iteratora, który wyznacza X.

Jeśli wyjątek podczas wstawiania, kontener pozostaje niezmieniony i wyjątek jest rethrown.

Przykład 

Dd998272.collapse_all(pl-pl,VS.110).gifKod

// std_tr1__unordered_multiset__unordered_multiset_emplace.cpp 
// compile with: /EHsc 
#include <unordered_set> 
#include <iostream>
#include <string> 
 
int main() 
    { 
    unordered_multiset< string> c1;
    string str1("a");

    c1.emplace(move(str1));
    cout << "After the emplace insertion, c1 contains: "
        << *c1.begin() << endl;

     return (0); 
    } 
 

Dd998272.collapse_all(pl-pl,VS.110).gifDane wyjściowe

After the emplace insertion, c1 contains: a

Wymagania

Nagłówek: <unordered_set>

Obszar nazw: std

Zobacz też

Informacje

<unordered_set>

unordered_multiset Class

Inne zasoby

<unordered_set> Członkowie