共用方式為


multimap::max_size

傳回多重對應的最大長度。

size_type max_size( ) const;

傳回值

多重對應的最大可能長度。

範例

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

int main( )
{
   using namespace std;
   multimap <int, int> m1;
   multimap <int, int> :: size_type i;

   i = m1.max_size( );
   cout << "The maximum possible length "
        << "of the multimap is " << i << "." << endl;
}

範例輸出

以下輸出(x86)。

The maximum possible length of the multimap is 536870911.

需求

標頭:<map>

命名空間: std

請參閱

參考

multimap 類別

標準樣板程式庫