Udostępnij za pośrednictwem


set::value_type

Typ, który opisuje obiekt zapisany jako element zestawu w charakterze wartości.

typedef Key value_type;

Uwagi

value_typejest synonimem parametru szablonu Key.

Aby uzyskać więcej informacji na temat Key, zobacz sekcję Uwagi set — Klasa tematu.

Należy zauważyć, że zarówno key_type i value_type są synonimami dla parametru szablonu klucz.Oba typy są przewidziane zestaw i zestaw wielokrotny klas, gdzie są one identyczne, dla zachowania zgodności z mapy i klasy multimap, jeżeli są one różne.

Przykład

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

int main( )
{
   using namespace std;
   set <int> s1;
   set <int>::iterator s1_Iter;

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

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

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

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

Wymagania

Nagłówek: <set>

Przestrzeń nazw: std

Zobacz też

Informacje

set — Klasa

Standardowa biblioteka szablonów