从文件c ++读取时无限循环

问题描述 投票:1回答:1

尽管while循环运行了无数次,但我在while条件下检查了EOF。但是它仍然运行了无数次。下面是我的代码:

int code;
cin >> code;
std::ifstream fin;

fin.open("Computers.txt");

std::ofstream temp; // contents of path must be copied to a temp file then renamed back to the path file
temp.open("Computers.txt", ios_base::app);


string line;
string eraseLine = to_string(code);
while (  getline(fin, line) && !fin.eof() ) {
    if (line == eraseLine)
    {
        /*int i = 0;
        while (i < 10)
        {*/
            temp << "";
            //i++;
        //}
    }
    if (line != eraseLine) // write all lines to temp other than the line marked for erasing
        temp << line << std::endl;
}
c++ infinite-loop file-handling getline
1个回答
8
投票

您在注释中声称temp应该引用一个临时文件,但事实并非如此。您可以使用fin打开要从中读取的同一文件。

由于在循环时不断追加,所以文件中总会有新内容被读取,从而导致无限循环(直到磁盘空间用完)。

为您的temp流使用其他文件名,稍后再重命名(如注释所示)。


也删除&& !fin.eof()。它没有任何目的。 while ( getline(fin, line) )是一种处理逐行读取直到文件结束的正确方法,请参见例如this questionthis one

© www.soinside.com 2019 - 2024. All rights reserved.