hash_multiset::emplace
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_multiset Class。 |
插入建構的項目就地入 hash_multiset。
template<class ValTy>
iterator insert(
ValTy&& _Val
);
參數
參數 |
描述 |
_Val |
要插入之項目的值。 hash_multiset Class ,除非 hash_multiset ,一般而言,已經包含該項目或索引鍵相等的已排序的項目。 |
傳回值
指向位置插入新項目的 emplace 成員函式傳回 Iterator。
備註
在 Visual C++ .NET Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_multiset_emplace.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset<string> hms3;
string str1("a");
hms3.emplace(move(str1));
cout << "After the emplace insertion, hms3 contains "
<< *hms3.begin() << "." << endl;
}
需求
標題: <hash_set>
命名空間: stdext