C++ List 库 - max_size() 函数
描述
C++ 函数 std::list::max_size() 返回列表可以容纳的最大元素数。 此值取决于系统或库实现。
声明
以下是 std::list::max_size() 函数形式 std::list 头的声明。
C++98
size_type max_size() const;
C++11
size_type max_size() const noexcept;
参数
None
返回值
返回可以放入列表的最大数字。
异常
此成员函数从不抛出异常。
时间复杂度
常数,即 O(1)
示例
以下示例显示了 std::list::max_size() 函数的用法。
#include <iostream> #include <list> using namespace std; int main(void) { list<int> l; cout << "max_size of list = " << l.max_size() << endl; return 0; }
Output
Let us compile and run the above program, this will produce the following result:max_size of list = 768614336404564650