在线文档教程
C++
容器 | Containers

std::list::max_size

STD::列表::max[医]大小

size_type max_size() const;

返回容器由于系统或库实现限制而能够容纳的最大元素数,即std::distance(begin(), end())最大的集装箱。

参数

%280%29

返回值

最大元素数。

例外

(none)(until C++11)
noexcept specification: noexcept(since C++11)

复杂性

常量。

注记

此值通常反映容器大小的理论限制。在运行时,容器的大小可能被限制为小于max_size()可用内存的数量。

二次

#include <iostream> #include <list> int main() { std::list<char> s; std::cout << "Maximum size of a 'list' is " << s.max_size() << "\n"; }

二次

可能的产出:

二次

Maximum size of a 'list' is 18446744073709551615

二次

另见

sizereturns the number of elements (public member function)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/container/list/max[医]大小