共用方式為


hash_set::count

注意事項注意事項

這個 API 已經過時。替代方案是 unordered_set 類別

傳回項目數索引鍵符合參數所指定的索引鍵的 hash_set 的。

size_type count( 
   const Key& _Key 
) const;

參數

  • _Key
    從 hash_set 將相符項目的索引鍵。

傳回值

1,如果 hash_set 包含排序鍵與參數相符索引鍵的項目。

0,如果 hash_set 不包含具有相符索引鍵的項目。

備註

成員函式傳回項目數位在下列範圍的:

[lower_bound (_Key), _Key ( upper_bound ))。

在 Visual C++ .NET 2003 中, <hash_map><hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間

範例

當編譯這個範例會使用 /Wp64 旗標或在 64 位元平台時,編譯器警告 C4267 會產生。 如需這項警告的詳細資訊,請參閱 編譯器警告 (層級 3) C4267

// hash_set_count.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
    using namespace std;
    using namespace stdext;
    hash_set<int> hs1;
    hash_set<int>::size_type i;

    hs1.insert(1);
    hs1.insert(1);

    // Keys must be unique in hash_set, so duplicates are ignored.
    i = hs1.count(1);
    cout << "The number of elements in hs1 with a sort key of 1 is: "
         << i << "." << endl;

    i = hs1.count(2);
    cout << "The number of elements in hs1 with a sort key of 2 is: "
         << i << "." << endl;
}
  

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_set 類別

標準樣板程式庫