set::size
Restituisce il numero di elementi nel set.
size_type size( ) const;
Valore restituito
La lunghezza corrente del set.
Esempio
// set_size.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
set <int> s1;
set <int> :: size_type i;
s1.insert( 1 );
i = s1.size( );
cout << "The set length is " << i << "." << endl;
s1.insert( 2 );
i = s1.size( );
cout << "The set length is now " << i << "." << endl;
}
Requisiti
Intestazione: <set>
Spazio dei nomi: std