Udostępnij za pośrednictwem


set::size

Zwraca liczbę elementów w zestawie.

size_type size( ) const;

Wartość zwracana

Bieżąca długość zestawu.

Przykład

// 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;
}
  

Wymagania

Nagłówek: <set>

Przestrzeń nazw: std

Zobacz też

Informacje

set — Klasa

set::size (STL — Przykłady)

Standardowa biblioteka szablonów