共用方式為


map::size

傳回的元素數目。這個對應的。

size_type size( ) const;

傳回值

對應的目前長度。

範例

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

// map_size.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main()
{
    using namespace std;
    map<int, int> m1, m2;
    map<int, int>::size_type i;
    typedef pair<int, int> Int_Pair;

    m1.insert(Int_Pair(1, 1));
    i = m1.size();
    cout << "The map length is " << i << "." << endl;

    m1.insert(Int_Pair(2, 4));
    i = m1.size();
    cout << "The map length is now " << i << "." << endl;
}
  
  

需求

標題: <map>

命名空間: std

請參閱

參考

map Class

map::max_size, map::clear, map::erase, 和 map::size

標準樣板程式庫