hash_multimap::emplace
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_multimap Class。 |
插入建構的項目就地入 hash_multimap。
template<class ValTy>
iterator emplace(
ValTy&& _Val
);
參數
參數 |
描述 |
_Val |
用於提供設計階段移動建構要插入中的項目 hash_multimap Class。 |
傳回值
指向位置插入新項目的 emplace 成員函式傳回 Iterator。
備註
項目的 hash_multimap::value_type 是一組,因此元素,的值會與第一個元件相等於這個機碼值和第二個元件的已排序配對相等於這個項目之資料值。
從 Visual C++ .NET 開始 Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_multimap_emplace.cpp
// compile with: /EHsc
#include<hash_multimap>
#include<iostream>
#include <string>
int main()
{
using namespace std;
using namespace stdext;
hash_multimap<int, string> hm1;
typedef pair<int, string> is1(1, "a");
hm1.emplace(move(is1));
cout << "After the emplace, hm1 contains:" << endl
<< " " << hm1.begin()->first
<< " => " << hm1.begin()->second
<< endl;
}
需求
標題: <hash_map>
命名空間: stdext