std::vector::reserve
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void reserve( size_type size ); |
||
设置容量至少
size
容器。如果需要分配新的存储. 原文:
Sets the capacity of the container to at least
size
. New storage is allocated if necessary. 目录 |
[编辑] 参数
size | - | 新产能的容器
|
[编辑] 返回值
(无)
[编辑] 例外
std::length_error if size > max_size().
[编辑] 复杂性
线性大小的容器
[编辑] 另请参阅
返回的元素的数目,可以保持在当前分配的存储空间 原文: returns the number of elements that can be held in currently allocated storage (公共成员函数) |