multiset::value_type

要素としての値として、容量がマルチセットとして格納されるオブジェクトを表す型。

typedef Key value_type;

解説

value_type は、テンプレート パラメーター Keyのシノニムです。

key_typevalue_type の両方がテンプレート パラメーター キーのシノニムであることに注意してください。 どちらの型も設定されているクラスで提供され、同じクラスとの互換性のマルチセットは別々の場合、multimap 割り当てます。

Keyの詳細については、"解説セクションを参照します。

使用例

// multiset_value_type.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   multiset <int> ms1;
   multiset <int>::iterator ms1_Iter;

   multiset <int> :: value_type svt_Int;   // Declare value_type
   svt_Int = 10;             // Initialize value_type

   multiset <int> :: key_type skt_Int;   // Declare key_type
   skt_Int = 20;             // Initialize key_type

   ms1.insert( svt_Int );         // Insert value into s1
   ms1.insert( skt_Int );         // Insert key into s1

   // A multiset accepts key_types or value_types as elements
   cout << "The multiset has elements:";
   for ( ms1_Iter = ms1.begin( ) ; ms1_Iter != ms1.end( ); ms1_Iter++ )
      cout << " " << *ms1_Iter;
   cout << "." << endl;
}
  

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

multiset クラス

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