Does clearing a vector affect its capacity?

独自空忆成欢 提交于 2019-11-27 14:58:11
Armen Tsirunyan

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);

In C++11 standard, you can do it more explicitly:

foo.shrink_to_fit();

To clear a vector and consume as little capacity as possible, use the swap trick:

std::vector<T>().swap(foo);

This creates an empty vector, swaps its internals with foo, and then destroys the temporary vector, getting rid of the elements that once belonged to foo and leaving foo as if it was freshly created.

The standard does not say anything about the effect of clear on capacity.

No, clear doesn't affect it's capacity(), it's remain the same even if you do clear. If you want to shrink the vector to fit, you can use the following trick after calling clear: foo.swap(vector(foo));

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!