共用方式為


multiset::count

傳回的項目數目索引鍵符合參數指定之索引鍵的多重集 (Multiset) 的。

size_type count(
   const Key& _Key
) const;

參數

  • _Key
    從多重集 (Multiset) 符合之項目的索引鍵。

傳回值

項目數目排序鍵與參數相符索引鍵的多重集的。

備註

成員函式傳回的項目數 X 表示範圍

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

範例

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

// multiset_count.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main()
{
    using namespace std;
    multiset<int> ms1;
    multiset<int>::size_type i;

    ms1.insert(1);
    ms1.insert(1);
    ms1.insert(2);

    // Elements do not need to be unique in multiset,
    // so duplicates are allowed and counted.
    i = ms1.count(1);
    cout << "The number of elements in ms1 with a sort key of 1 is: "
         << i << "." << endl;

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

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

需求

標題: <set>

命名空間: std

請參閱

參考

multiset Class

標準樣板程式庫