次の方法で共有


hash_multimap::emplace

[!メモ]

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

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

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

パラメーター

パラメーター

説明

_Val

構成要素の実行に使用する値 hash_multimap Classに挿入する要素を指定します。

戻り値

emplace のメンバー関数は新しい要素が挿入された位置を指す反復子を返します。

解説

要素の hash_multimap::value_type は、要素の値がキー値と等しい最初の構成要素および要素のデータ値と等しい2番目のコンポーネントとの順序付けられたペアになるように、ペアです。

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

使用例

// hash_multimap_emplace.cpp
// compile with: /EHsc
#include<hash_multimap>
#include<iostream>
#include <string>

int main()
{
    using namespace std;
    using namespace stdext;
    hash_multimap<int, string> hm1;
    typedef pair<int, string> is1(1, "a");

    hm1.emplace(move(is1));
    cout << "After the emplace, hm1 contains:" << endl
      << " " << hm1.begin()->first
      << " => " << hm1.begin()->second
      << endl;
}
  

必要条件

ヘッダー: <hash_map>

名前空間: のstdext

参照

関連項目

hash_multimap Class

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