multiset::size
Zwraca liczbę elementów w zestaw wielokrotny.
size_type size( ) const;
Wartość zwracana
Bieżąca długość zestaw wielokrotny.
Przykład
// 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;
}
Wymagania
Nagłówek: <set>
Przestrzeń nazw: std