hash_set::count
Not
Bu API artık kullanılmıyor.Alternatif unordered_set Class.
Bir hash_set parametresi tarafından belirtilen anahtar anahtar eşleşen içinde öğelerin sayısını döndürür.
size_type count(
const Key& _Key
) const;
Parametreler
- _Key
Hash_set eşleşmesi gereken öğeler anahtar.
Dönüş Değeri
1 hash_set, sıralama anahtarı parametre anahtarı ile eşleşen bir öğe içeriyor.
0 hash_set ile eşleşen bir anahtar öğe içermiyor.
Notlar
Üye işlevi aşağıdaki aralıktaki öğelerin sayısını verir:
[lower_bound (_Key ), upper_bound (_Key ) ).
Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.
Örnek
Bu örnek ile derlerken /Wp64 bayrak veya 64-bit platformunda, derleyici C4267 uyarı oluşturulmaz. Bu uyarı hakkında daha fazla bilgi için bkz: Derleyici uyarı (Düzey 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;
}
Gereksinimler
Başlık: <hash_set>
Ad alanı: stdext