gpt4 book ai didi

c++ - vector::shrink_to_fit 是否允许重新分配?

转载 作者:可可西里 更新时间:2023-11-01 17:51:49 28 4
gpt4 key购买 nike

该成员函数在标准中没有定义作用(仅备注),如果不允许重新分配,则使用将受到限制。但我在标准中发现的唯一似乎适用的段落是 23.2.1/11:

"Unless otherwise specified (either explicitly or by defining a function in terms of other functions), invoking a container member function or passing a container as an argument to a library function shall not invalidate iterators to, or change the values of, objects within that container."

由于重新分配会使迭代器无效,这是否意味着 shrink_to_fit 不能正式重新分配?如果是这样,该函数只能对减少容量不重新分配的实现产生影响,如果有的话......

最佳答案

我同意,其意图显然是 shr​​ink_to_fit() 可以重新分配,因此应该允许它使迭代器无效。

如果实现为分配器提供类似 realloc() 的功能,保证在收缩 block 时不会移动内存,这不会使迭代器无效,则只有满足请求才有可能。但我不认为这是预期的,正如 recently-added requirement 所暗示的那样。 TMoveInsertable 到 vector 中,因为该要求仅在元素移动到新位置时才相关,这会使迭代器无效。

我认为你应该submit an issue澄清 shr​​ink_to_fit() 可以使迭代器无效。该问题适用于 basic_stringdequevector

关于c++ - vector::shrink_to_fit 是否允许重新分配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13912507/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com