本文介绍了当新大小小于当前大小时,std :: vector :: resize()是否会重新分配?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我 resize() std :: vector 的大小小于其当前大小,该向量是否有可能分配新的内存? / p>

出于性能原因,这对我来说很重要。

解决方案

不, 调整大小将永远不会重新分配。

(来自)



鉴于此,我们可以确定阳离子不可能发生。


If I resize() an std::vector to some size smaller than its current size, is it possible that the vector will ever allocate new memory?

This is important to me for performance reasons.

解决方案

No, resizeing to a smaller size will never reallocate.

(From here)

Given that, we can be sure that a reallocation cannot have happened.

这篇关于当新大小小于当前大小时,std :: vector :: resize()是否会重新分配?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 13:09