这是我的原始帖子:打开文件后程序崩溃
我一次又一次地尝试修复我的代码,但它仍然崩溃或无法控制地运行。我还没有找到解决方案。
这是我更新的代码:
while(!intInputFile.eof())
{
intNode* anotherInt;
anotherInt = new intNode;
if(intList==NULL)
{
intList = anotherInt;
lastInt = anotherInt;
}
else
{
lastInt->nextNode = new intNode;
lastInt = lastInt->nextNode;
lastInt->nextNode = NULL;
}
lastInt->intValue = fileInt;
lastInt = lastInt->nextNode;
lastInt->nextNode = NULL;
intInputFile >> fileInt; // *** Problem occurs on this line. ***
}