Udostępnij za pośrednictwem


hash_set::size (STL/CLR)

Oblicza liczbę elementów.

    size_type size();

Uwagi

Element członkowski funkcja zwraca długość kontrolowanej sekwencji.Umożliwia ona określić liczbę elementów aktualnie w kontrolowanej sekwencji.Jeśli wszystko dbają o to, czy sekwencja ma rozmiar różną od zera, zobacz hash_set::empty (STL/CLR)().

Przykład

// cliext_hash_set_size.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_set<wchar_t> Myhash_set; 
int main() 
    { 
    Myhash_set c1; 
    c1.insert(L'a'); 
    c1.insert(L'b'); 
    c1.insert(L'c'); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    System::Console::WriteLine("size() = {0} starting with 3", c1.size()); 
 
// clear the container and reinspect 
    c1.clear(); 
    System::Console::WriteLine("size() = {0} after clearing", c1.size()); 
 
// add elements and clear again 
    c1.insert(L'a'); 
    c1.insert(L'b'); 
    System::Console::WriteLine("size() = {0} after adding 2", c1.size()); 
    return (0); 
    } 
 
  

Wymagania

Nagłówek:<cliext/hash_set>

Przestrzeń nazw: cliext

Zobacz też

Informacje

hash_set (STL/CLR)

hash_set::empty (STL/CLR)