hash_multimap::max_size

 

Note

This API is obsolete. The alternative is unordered_multimap Class.

Returns the maximum length of the hash_multimap.

Syntax

size_type max_size( ) const;

Return Value

The maximum possible length of the hash_multimap.

Remarks

In Visual C++ .NET 2003, members of the <hash_map> and <hash_set> header files are no longer in the std namespace, but rather have been moved into the stdext namespace. See The stdext Namespace for more information.

Example

// hash_multimap_max_size.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multimap <int, int> hm1;
   hash_multimap <int, int> :: size_type i;

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

Sample Output

The following output is for x86.

The maximum possible length of the hash_multimap is 536870911.

Requirements

Header: <hash_map>

Namespace: stdext

See Also

hash_multimap Class
Standard Template Library