gpt4 book ai didi

c++ - 缩小时 std::string::resize() 可以抛出吗?

转载 作者:行者123 更新时间:2023-12-02 10:01:58 34 4
gpt4 key购买 nike

考虑以下函数:

void shrink_string(std::string& str) {
if (str.size() >= 2) {
str.resize(str.size() - 2);
}
}

不知道这个函数能不能声明 noexcept (假设 C++11 标准)?我明白 the documentation不声明 .resize()作为 noexcept,但这主要是因为此方法可用于增大和缩小字符串。

显然,通过保持字符串的容量不变并简单地减少内部长度,可以轻松实现收缩;同时 resize()无论如何可能决定重新分配,以释放一些内存——但如果重新分配引发错误,它会回落到微不足道的调整大小吗?

最佳答案

来自 docs :

In case the container shrinks, all iterators, pointers and references to elements that have not been removed remain valid after the resize and refer to the same elements they were referring to before the call.



因此,将 vector 调整为较小的大小不会改变内存(使用 shrink_to_fit 代替(建议 a)将容量减少到大小)。这是因为操作系统中没有标准方法来调整内存大小并强制指针相同。

HeapReAlloc () 例如,在 Windows 中,可能会或可能不会返回相同的指针,但您不能强制它返回相同的指针。

关于c++ - 缩小时 std::string::resize() 可以抛出吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62140624/

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