hash_set::emplace_hint
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_set Class。 |
插入建構的項目就地入 hash_set。
template<class ValTy>
iterator emplace(
const_iterator _Where,
ValTy&& _Val
);
參數
參數 |
描述 |
_Val |
要插入之項目的值至 hash_set Class ,除非 hash_set ,一般而言,已經包含該項目或索引鍵相等的已排序的項目。 |
_Where |
這個位置開始搜尋正確問題的外掛程式。 (在被插入到舊的常數時間可能發生,而不是對的時間,則為,如果插入點後面緊接著 _Where)。 |
傳回值
指向新位置的項目插入 hash_set的 hash_set::emplace 成員函式傳回 Iterator,或者在位置與相等排序的現有項目。
備註
如果插入點後面緊接著 _Where,插入在被轉換舊的常數時間可能發生,而不是對的時間。
在 Visual C++ .NET Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_set_emplace_hint.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
using namespace stdext;
hash_set<string> hs3;
string str1("a");
hs3.insert(hs3.begin(), move(str1));
cout << "After the emplace insertion, hs3 contains "
<< *hs3.begin() << "." << endl;
}
需求
標題: <hash_set>
命名空間: stdext