hash_multiset::count
注意事項 |
---|
這個 API 已經過時。這個選項是 unordered_multiset Class。 |
傳回項目數索引鍵符合參數指定索引鍵的 hash_multiset 的。
size_type count(
const Key& _Key
) const;
參數
- _Key
從 hash_multiset 將相符項目的索引鍵。
傳回值
項目的數目。hash_multiset 的與參數指定的索引鍵。
備註
成員函式傳回項目數位在下列範圍的:
[lower_bound (_Key ), upper_bound (_Key ) ).
在 Visual C++ .NET Pocket PC, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不在 std 命名空間,,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
當編譯這個範例與 /Wp64 旗標或在一個獨立的平台時,編譯器警告 C4267 會產生。 如需這項警告的詳細資訊,請參閱 編譯器警告 (層級 3) C4267。
// hash_multiset_count.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset<int> hms1;
hash_multiset<int>::size_type i;
hms1.insert(1);
hms1.insert(1);
// Keys do not need to be unique in hash_multiset,
// so duplicates may exist.
i = hms1.count(1);
cout << "The number of elements in hms1 with a sort key of 1 is: "
<< i << "." << endl;
i = hms1.count(2);
cout << "The number of elements in hms1 with a sort key of 2 is: "
<< i << "." << endl;
}
需求
標題: <hash_set>
命名空間: stdext