共用方式為


hash_set::size (STL/CLR)

計數項目的數目。

    size_type size();

備註

成員函式傳回受控制序列的長度。 您會用它來決定目前項目數目超過受控制序列。 如果您想要的是序列是否具有非零的大小,請參閱 hash_set::empty (STL/CLR)()。

範例

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

需求

標題: <cliext/hash_set>

命名空間: cliext

請參閱

參考

hash_set (STL/CLR)

hash_set::empty (STL/CLR)