hash_set::emplace
注意事項 |
---|
這個 API 已經過時。替代方案是 unordered_set 類別。 |
插入建構的項目就地入 hash_set。
template<class ValTy>
pair <iterator, bool> emplace(
ValTy&& _Val
);
參數
參數 |
說明 |
_Val |
要插入至 hash_set 類別 的項目值,除非 hash_set 已經包含項目或,索引值已同等排序過的項目。 |
傳回值
emplace 成員函式來傳回 bool 元件傳回 true 的配對,如果插入是執行則為 false ,如果 hash_set 已經包含了索引鍵 Common Language Runtime 在定序,因此, Iterator 元件傳回位址或插入新項目的項目已經在位置項目。
備註
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_set_emplace.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.emplace(move(str1));
cout << "After the emplace insertion, hs3 contains "
<< *hs3.begin() << "." << endl;
}
需求
標頭: <hash_set>
**命名空間:**stdext