我想使用realloc
从内存块的末尾释放内存。我了解该标准不要求realloc
成功,即使请求的内存低于原始malloc
/calloc
调用。我可以只realloc
,然后如果失败则返回原始文件吗?
// Create and fill thing1
custom_type *thing1 = calloc(big_number, sizeof(custom_type));
// ...
// Now only the beginning of thing1 is needed
assert(big_number > small_number);
custom_type *thing2 = realloc(thing1, sizeof(custom_type)*small_number);
// If all is right and just in the world, thing1 was resized in-place
// If not, but it could be copied elsewhere, this still works
if (thing2) return thing2;
// If thing2 could not be resized in-place and also we're out of memory,
// return the original object with extra garbage at the end.
return thing1;
这不是一个小的优化;我想保存的部分可能只有原始长度的5%,可能是几千兆字节。
注意:使用 realloc 来缩小分配的内存和我是否应该强制执行 realloc 检查新块大小是否小于初始大小?是相似的,但没有解决我的特定问题。
是的,你可以。如果realloc()
不成功,则原始内存区域保持不变。我通常使用这样的代码:
/* shrink buf to size if possible */
void *newbuf = realloc(buf, size);
if (newbuf != NULL)
buf = newbuf;
确保size
不为零。使用零长度数组的realloc()
行为取决于实现,并且可能是麻烦的根源。有关详细信息,请参阅此问题。