다음을 통해 공유


unordered_multimap::emplace_hint

위치에서 구성 요소를 추가 합니다.

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

매개 변수

Parameter

설명

ValTy

내부 생성자 인수 형식입니다.

val

삽입할 값입니다.

where

(참고만)를 삽입 하려면 컨테이너에 위치 합니다.

설명

멤버 함수 반환 insert(move(val)).first사용 하 여 where 내에서 제어 되는 시퀀스 삽입 지점에 대 한 검색을 시작 지점으로 합니다.(삽입 가능한 경우 발생할 수 있습니다 다소 빠르게 삽입 포인터 바로 앞에 또는 뒤에 오는 경우 where입니다.)

삽입 중에 예외를 throw 하는 경우 컨테이너 왼쪽입니다 변경 되지 및 해당 예외를 다시 throw 합니다.

예제

// std_tr1__unordered_multimap__unordered_multimap_emplace_hint.cpp 
// compile with: /EHsc 
#include <unordered_map> 
#include <iostream> 
#include <string>
 
typedef std::unordered_multimap<char, int> Mymap; 
int main() 
    { 
    using namespace std;
    unordered_multimap<int, string> c1;
    pair<int, string> is1(1, "a");

    c1.emplace(move(is1));
    cout << "After the emplace insertion, c1 contains:" << endl
      << " " << c1.begin()->first
      << " => " << c1.begin()->second
      << endl;
 
    return (0); 
    } 
 
  

요구 사항

헤더: <unordered_multimap>

네임 스페이스: 국방 표준

참고 항목

참조

<unordered_map>

unordered_map Class

기타 리소스

<unordered_map> 멤버