hash_multiset::emplace_hint
注意事項 |
---|
這個 API 已經過時。替代方案是 unordered_multiset 類別。 |
插入建構的項目就地至 hash_multiset,與將提示。
template<class ValTy>
iterator insert(
const_iterator _Where,
ValTy&& _Val
);
參數
參數 |
說明 |
_Val |
要插入至 hash_multiset 類別 的項目值,除非 hash_multiset 已經包含項目或,索引值已同等排序過的項目。 |
_Where |
正確的搜尋插入點之起始位置。(如果插入點緊接在 _Where 之後,插入可能在平攤常數時間發生,而不是對數時間)。 |
傳回值
指向位置新增項目插入至 hash_multiset的 hash_multiset::emplace 成員函式傳回 Iterator。
備註
如果插入點緊接在 _Where,插入在被轉換舊的常數時間可能發生,而不是對的時間。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_multiset_emplace_hint.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset<string> hms1;
string str1("a");
hms1.insert(hms1.begin(), move(str1));
cout << "After the emplace insertion, hms1 contains "
<< *hms1.begin() << "." << endl;
}
需求
標頭: <hash_set>
**命名空間:**stdext