玩大型游戏前,简单的优化一下内存,代码如下
easyx吧
全部回复
仅看楼主
level 9
zhangjb90s 楼主
[飘过]
#include <stdio.h>
#include <conio.h>
#include <malloc.h>
#include <string.h>
int main(){
char *ptr;
int i=1;
while(!kbhit())
{
ptr=(char*)malloc(1024*1024);
strcpy(ptr,"aaaaaa");
printf("%d\n",i);
i++;
}
getch();
return 0;
}
2012年11月30日 13点11分 1
level 9
zhangjb90s 楼主
量力而行,看好收手。结束程序后,内存瞬间变多。。。。。。。。。
2012年11月30日 13点11分 3
1