使用免费时内存使用不会减少? [英] Memory usage isn't decreasing when using free?

查看:121
本文介绍了使用免费时内存使用不会减少?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

不知怎的,这个调用 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.

这篇关于使用免费时内存使用不会减少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆