命名空间
变体
操作

std::multiset<Key,Compare,Allocator>::max_size

来自 cppreference.com
< cpp‎ | 容器‎ | multiset
 
 
 
 
size_type max_size() const;
(自 C++11 起为 noexcept)

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

内容

[编辑] 参数

(无)

[编辑] 返回值

最大元素数量。

[编辑] 复杂度

常数。

[编辑] 备注

此值通常反映容器的大小理论限制,最多为 std::numeric_limits<difference_type>::max()。在运行时,容器的大小可能会受到可用 RAM 数量的限制,小于 max_size()

[编辑] 示例

#include <iostream>
#include <locale>
#include <set>
 
int main()
{
    std::multiset<char> p;
    std::multiset<long> q;
 
    std::cout.imbue(std::locale("en_US.UTF-8"));
    std::cout << std::uppercase
              << "p.max_size() = " << std::dec << p.max_size() << " = 0x"
              << std::hex << p.max_size() << '\n'
              << "q.max_size() = " << std::dec << q.max_size() << " = 0x"
              << std::hex << q.max_size() << '\n';
}

可能的输出

p.max_size() = 461,168,601,842,738,790 = 0x666,666,666,666,666
q.max_size() = 461,168,601,842,738,790 = 0x666,666,666,666,666

另请参阅

返回元素的数量
(公有成员函数) [编辑]