C++ Set 库 - max_size 函数


描述

它返回集合容器可以容纳的最大元素数。

宣言

以下是 std::set::max_size 在各种 C++ 版本中的工作方式。

C++98

size_type max_size() const;

C++11

size_type max_size() const noexcept;

返回值

它返回集合容器中元素的数量。

例外情况

它从不抛出异常。

时间复杂度

时间复杂度是恒定的。

例子

以下示例显示了 std::set::max_size 的用法。

#include <iostream>
#include <set>

int main () {
   int i;
   std::set<int> myset;

   if (myset.max_size()>100) {
      for (i = 0; i < 100; i++) myset.insert(i);
      std::cout << "The set contains 100 elements.\n";
   }
   else std::cout << "The set could not hold 100 elements.\n";

   return 0;
}

上面的程序可以正确编译并执行。

The set contains 100 elements.
设置.htm