hash_set::max_size

说明说明

此 API 已过时。另一种方法是 unordered_set Class

返回 hash_set 的最大长度。

size_type max_size( ) const;

返回值

hash_set 的最大可能的长度。

备注

在 Visual C++ .NET 2003 中,<hash_map><hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。有关更多信息,请参见 stdext 命名空间

示例

// hash_set_max_size.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;

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

示例输出

下面的输出是针对 x86。

The maximum possible length of the hash_set is 1073741823.

要求

标头: <hash_set>

命名空间: stdext

请参见

参考

hash_set Class

标准模板库