hash_multiset::emplace
[!メモ]
この API は、互換性のために残されています。代わりに unordered_multiset クラスです。
hash_multisetに構築された要素を挿入します。
template<class ValTy>
iterator insert(
ValTy&& _Val
);
パラメーター
パラメーター |
説明 |
_Val |
hash_multiset が既にその要素をか、キーが同じで並べる要素をよりよくある場合 hash_multiset Class に挿入する要素の値。 |
戻り値
emplace のメンバー関数は新しい要素が挿入された位置を指す反復子を返します。
解説
Visual C++ .NET 2003では、<hash_map> と <hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。
使用例
// hash_multiset_emplace.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset<string> hms3;
string str1("a");
hms3.emplace(move(str1));
cout << "After the emplace insertion, hms3 contains "
<< *hms3.begin() << "." << endl;
}
必要条件
ヘッダー: <hash_set>
名前空間: のstdext