これが私の元の投稿です:ファイルを開いた後にプログラムがクラッシュする
コードを何度も修正しようとしましたが、それでもクラッシュするか、制御不能に実行されます。私はまだ解決策を見つけていません。
これが私の更新されたコードです:
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. ***
}