我想问你一个问题。我有以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define XXX 1024*1024
int main()
{
int *p;
unsigned long x=0;
while (1)
{
//p = (int *) calloc (1,XXX);
p = (int *) malloc (XXX);
memset (p,0,XXX);
x++;
printf ("%lu MB allocated.\n",x);
sleep (1);
}
return 0;
}
如果我运行这段代码,一切都会正常运行。每一秒,都会在内存中分配一个新的 MB。我遇到的问题是,如果我取消注释 calloc() 行并注释 malloc() 和 memset() 行。据我所知, calloc() 应该在分配的内存中将所有字节初始化为零;malloc() 和 memset() 做同样的事情。
当我使用 calloc()(没有 malloc() 和 memset())运行代码时,分配了初始的 1 MB(因为这是正常的),然后在几秒钟后(~10)分配了另一个 MB。
为什么会出现这种行为?
提前致谢!