使用免费时内存使用量没有减少?

2021-12-30 00:00:00 memory-leaks c++

不知何故,这个对 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.

相关文章