unordered_multimap::emplace_hint
添加就地构造一个元素。
template<class ValTy>
iterator emplace(const_iterator where, ValTy&& val);
参数
Parameter |
说明 |
ValTy |
就地构造函数参数类型。 |
val |
要插入的值。 |
where |
在插入 (仅提示的容器)。 |
备注
,在搜索的控件序列中的起始位置插入点,成员函数返回 insert(move(val)).first,使用 where 。 (插入某些可能更快,可能会发生,如果插入点紧邻或遵循 where。)
如果在插入时引发,容器未更改,并且异常来重新引发。
示例
// 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
命名空间: std