Udostępnij za pośrednictwem


unordered_multiset::emplace_hint

Dodaje element zbudowane w miejscu.

template<class ValTy>
    iterator emplace_hint(const_iterator where, ValTy&& val);

Parametry

Parametr

Opis

ValTy

Typ argumentu w miejsce konstruktora.

val

Wartość do wstawienia.

where

Gdy w pojemniku do wstawiania (tylko Wskazówka).

Uwagi

Zwraca wartość funkcji składowej insert(move(val)).first, korzystanie z where jako miejsce rozpoczęcia w kontrolowanych sekwencję wyszukiwania dla punktu wstawiania.(Wstawiania prawdopodobnie może wystąpić nieco szybciej, jeśli punkt wstawiania bezpośrednio poprzedza lub następuje where.)

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

Przykład 

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

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

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

Dd998266.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