次の方法で共有


hash_set::emplace

[!メモ]

この API は、互換性のために残されています。代わりに unordered_set クラスです。

hash_setに構築された要素を挿入します。

template<class ValTy>
    pair <iterator, bool> emplace(
        ValTy&& _Val
);

パラメーター

パラメーター

説明

_Val

hash_set が既にその要素をか、キーが同じで並べる要素をよりよくある場合 hash_set Class に挿入する要素の値。

戻り値

emplace のメンバー関数は hash_set が既にキーに対応した順序で、反復子のコンポーネントが要素が既に発生した位置に新しい要素を挿入するか、またはaddressを返す要素が含まれている場合は、挿入します false がある場合は bool のコンポーネントが true を返すペアを返します。

解説

Visual C++ .NET 2003では、<hash_map><hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。

使用例

// 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

参照

関連項目

hash_set Class

標準テンプレート ライブラリ