std::allocator::max_size
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <memory> 中定义
|
||
size_type max_size() const |
||
返回理论上的最大可能值
n
的呼叫allocate(n, 0)
能够成功. 原文:
Returns the maximum theoretically possible value of
n
, for which the call allocate(n, 0)
could succeed. 在大多数实现中,这样的回报std::numeric_limits<size_type>::max().
原文:
In most implementations, this returns std::numeric_limits<size_type>::max().
目录 |
[编辑] 参数
(无)
[编辑] 返回值
支持的最大分配大小
原文:
The maximum supported allocation size
[编辑] 例外
[编辑] 另请参阅
[静态的]</div></div>
|
返回对象的最大规模的分配器支持 原文: returns the maximum object size supported by the allocator (公共静态成员函数of std::allocator_traits )
|