本文介绍了释放内存的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include <conio.h>
#include<malloc.h>
int main(int argc, char* argv[])
{
    void *p;
    getch();
    p=malloc(sizeof(int)*14000);
        printf("memory is allocated");
    getch();
    free(p);
        getch();
            printf("memory has been cleard");
                getch();
    return 0;
}


我用那个代码..
我创建了指向指针的内存.
我检查了虚拟内存使用率是否很高(800k)
释放内存后,它仍然仅位于该位置(仍为800k)
我清除内存..那么为什么它仍然处于高位...


i use the that code..
i create a memory to the pointer.
and i check the virtual memory usage it goes high(800k)
After i free up the memory it still in that position only(still in 800k)
i clear the memory.. then why its still in high...

推荐答案


p=malloc(sizeof(int)*500000);



这篇关于释放内存的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 08:37