다음을 통해 공유


multiset::value_type

요소로 multiset 용량 값에 저장 된 개체를 설명 하는 형식입니다.

typedef Key value_type;

설명

value_type템플릿 매개 변수는 동일 Key.

이때 모두 key_typevalue_type 동의어에 대 한 템플릿 매개 변수는 .두 클래스 집합 및 multiset 위치 동일, 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 Class

표준 템플릿 라이브러리