Does clearing a vector affect its capacity?(清除向量会影响其容量吗?)
问题描述
我实例化一个 std::vector foo(1000)
.
foo.size()
现在是 1000,foo.capacity()
也是 1000.
foo.size()
is now 1000 and foo.capacity()
is also 1000.
如果我用 foo.clear()
清除向量,size()
现在是 0,但是 capacity()
是什么>?标准对此有任何说明吗?
If I clear the vector with foo.clear()
, the size()
is now 0, but what is the capacity()
? Does the standard say anything about that?
推荐答案
不,它没有.向量的容量永远不会减少.这不是标准规定的,但在 VC++ 和 g++ 的标准库实现中都是如此.为了将容量设置为刚好适合大小,请使用著名的交换技巧
No, it doesn't. The capacity of a vector never decreases. That isn't mandated by the standard but it's so both in standard library implementations of VC++ and g++. In order to set the capacity just enough to fit the size, use the famous swap trick
vector<T>().swap(foo);
在 C++11 标准中,你可以更明确地做到这一点:
In C++11 standard, you can do it more explicitly:
foo.shrink_to_fit();
这篇关于清除向量会影响其容量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:清除向量会影响其容量吗?
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- C++ 协变模板 2021-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 静态初始化顺序失败 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01