是否可以部分释放内存?
在 C (或 C++)中,我想知道是否可以部分释放内存块。
例如,假设我们创建一个大小为 100 的整数数组 a
,
int * a = malloc(sizeof(int)*100);
然后我们想要调整 a
的大小,使其容纳 20 个整数而不是 100 个。
是否存在如何仅释放 a
的最后 80*sizeof(int) 字节?例如,如果我们调用 realloc,它会自动执行此操作吗?
- 我正在寻找一种不需要移动/复制前 20 个整数的解决方案。
- 或者,您能否解释一下为什么如果可能的话会很糟糕,或者为什么能够做到这一点没有包含在任何一种语言中?
In C (or C++) I'm wondering if it's possible to partially deallocate a block of memory.
For example, suppose we create an array of integers a
of size 100,
int * a = malloc(sizeof(int)*100);
and then later we want to resize a
so that it holds 20 ints rather than 100.
Is there a way to free only the last 80*sizeof(int) bytes of a
? For example if we call realloc, will it do this automatically?
- I'm looking for a solution that doesn't require moving/copying the first 20 ints.
- Alternatively, can you explain either why it would be bad if this were possible, or why the ability to do this wasn't included in either language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 realloc,但您绝对应该考虑使用 STL 容器而不是手动分配内存。
You can use realloc, but you should definitely consider using STL containers instead of manually allocating memory.
与 C++ 中的原始指针相比,我们更喜欢 RAII 容器。
We prefer RAII containers to raw pointers in C++.
我更喜欢使用
std::vector
。让我们启用 C++0x:从 n3092(不是最终草案,我需要在这台 PC 上获取新副本):
void Shrink_to_fit();
备注:
shrink_to_fit
是减少内存使用的非绑定请求。 [注意:该请求不具有约束力,允许对特定于实现的优化有一定的自由度。 ——尾注]I would prefer using a
std::vector
. Let's enable C++0x:From n3092 (not the so final draft, I need to get a fresh copy on this PC):
void shrink_to_fit();
Remarks:
shrink_to_fit
is a non-binding request to reduce memory use. [ Note: The request is non-binding to allow latitude for implementation-specific optimizations. —end note ]