multiset::size
Multiset에서 요소의 개수를 반환합니다.
size_type size( ) const;
반환 값
복수 집합의 현재 길이입니다.
예제
// multiset_size.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int> ms1;
multiset <int> :: size_type i;
ms1.insert( 1 );
i = ms1.size( );
cout << "The multiset length is " << i << "." << endl;
ms1.insert( 2 );
i = ms1.size( );
cout << "The multiset length is now " << i << "." << endl;
}
요구 사항
헤더: <set>
네임 스페이스: std