std::flat_set<Key,Compare,KeyContainer>::max_size
来自 cppreference.com
size_type max_size() const noexcept; |
(自 C++23) | |
返回容器由于系统或库实现限制而能够容纳的最大元素数,即 std::distance(begin(), end()) 用于最大容器。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
最大元素数。
[编辑] 复杂度
常数。
[编辑] 注释
此值通常反映容器的大小理论限制,最多为 std::numeric_limits<difference_type>::max()。在运行时,容器的大小可能会受到可用 RAM 数量的限制,限制为小于 max_size()
的值。
[编辑] 示例
运行此代码
#include <iostream> #include <flat_set> #include <locale> int main() { std::flat_set<char> q; std::cout.imbue(std::locale("en_US.UTF-8")); std::cout << "Maximum size of a std::flat_set is " << q.max_size() << '\n'; }
可能的输出
Maximum size of a std::flat_set is 768,614,336,404,564,650
[编辑] 另请参阅
返回元素的数量 (公共成员函数) |