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
Kod
// 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);
}
Dane wyjściowe
After the emplace insertion, c1 contains: a
Wymagania
Nagłówek: <unordered_set>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<unordered_set> Członkowie