Memory usage isn#39;t decreasing when using free?(使用免费时内存使用量没有减少?)
问题描述
不知何故,这个对 free()
的调用不起作用.我在 Windows 上运行此应用程序并跟踪任务管理器中使用的内存,但在调用 free()
后没有发现内存使用量减少.
Somehow this call to free()
is not working. I ran this application on Windows and followed the memory using in Task Manager, but saw no reduction in memory usage after the call to free()
.
int main(int argc, char *argv[])
{
int i=0;
int *ptr;
ptr = (int*) malloc(sizeof(int) * 1000);
for (i=0; i < 1000; i++)
{
ptr[i] = 0;
}
free(ptr); // After this call, the program memory usage doesn't decrease
system("PAUSE");
return 0;
}
推荐答案
典型的 C 实现不会将 free:d 内存返回给操作系统.它可供同一程序使用,但不能供其他程序使用.
Typical C implementations do not return free:d memory to the operating system. It is available for use by the same program, but not to others.
这篇关于使用免费时内存使用量没有减少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用免费时内存使用量没有减少?


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 我有静态或动态 boost 库吗? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01