multiset::value_type
Typ, który opisuje obiekt zapisany jako element jako zestaw wielokrotny w charakterze wartości.
typedef Key value_type;
Uwagi
value_typejest synonimem parametru szablonu Key.
Należy zauważyć, że zarówno key_type i value_type są synonimami dla parametru szablonu klucz.Oba typy są przewidziane zestaw klas i zestaw wielokrotny, gdzie są one identyczne, dla zachowania zgodności z mapę klas i Mapa wielokrotnego dopasowania, jeżeli są one różne.
Aby uzyskać więcej informacji na temat Key, zobacz sekcję Spostrzeżenia w temacie.
Przykład
// 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;
}
Wymagania
Nagłówek: <set>
Przestrzeń nazw: std