Possible Duplicate:
what's the point in malloc(0)?
what does malloc(0) return?
此代码显示“unsuccessful”,但如果将-1替换为0,则不会为空我不明白你怎么能分配0个内存空间我知道没有用,但不为NULL==0L,所以也应该为==0。。

#include <stdio.h>
#include <stdlib.h>
int main()
{
int *ptr;
if((ptr = malloc(-1)) == NULL)
    printf("unsuccessful: no memory space was allocated.\n");
else{
    printf("successful: memoryspace was allocated. \n");
    free(ptr);
}
getch();
return 0;

}

最佳答案

它的实现定义如下:
7.22.3-1条
如果无法分配空间,则返回空指针如果
请求的空间大小为零,行为为
实现定义:返回空指针,或者
行为就像大小是一些非零值,除了
返回的指针不应用于访问对象。
所以它可以返回NULL但不必返回另外,要弄清楚malloc(-1)失败的原因,请注意它的原型是:

void *malloc(size_t size);
             ^^^^^^

因此,您将-1转换为无符号类型,得到一个非常大的值。

10-06 12:42
查看更多