但是 林锐的那本里 有这样一个例子是这样 写的
void main(void)
{
float *p = NULL;
while(TRUE)
{
p = new float[1000000];
cout << “eat memory” << endl;
if(p==NULL)
exit(1);
}
}
虽然程序的目的是为了耗尽内存 但是这个例子是可以运行的啊...
为什么呢?
void main(void)
{
float *p = NULL;
while(TRUE)
{
p = new float[1000000];
cout << “eat memory” << endl;
if(p==NULL)
exit(1);
}
}
虽然程序的目的是为了耗尽内存 但是这个例子是可以运行的啊...
为什么呢?