程序不会读取文件中的第一个条目

时间:2015-05-04 00:46:48

标签: c++ file file-io structure character-arrays

我需要帮助修复这个没有将一个文件中的第二个条目写入另一个文件的C ++程序。它似乎只是将第一个条目写入文件,然后while循环终止,即使尚未到达文件的末尾。这是程序:

indata

我在while循环中测试的条件包括!indata.eof()indata.good()和{{1}}。

有什么想法?感谢。

1 个答案:

答案 0 :(得分:0)

我解决了这个问题:

对于这种特殊情况,我无法弄清楚如何让while循环迭代多次,所以我使用了for循环:

indata.open("income.dat", ios::out | ios::binary);

   for (count2 = 0 ; count2 < count + 1 ; count2++)
   {
    indata.ignore();
    indata.getline(person[count2].name, '\n'); 
    indata >> person[count2].income;
    indata >> person[count2].rent;
    indata >> person[count2].food;
    indata >> person[count2].utilities;
    indata >> person[count2].miscell;
    indata >> person[count2].net;

    if (count2 == 0)
    {   
        // write information to output file
        outdata << setw(20) << "Name" << setw(10) << "Income" << setw(10) << "Rent" 
            << setw(10) << "Food" << setw(15) << "Utilities" << setw(15)
                << "Miscellaneous" << setw(10) << "Net Money" << endl << endl;
    }

    outdata << setw(20) << person[count2].name 
                << setw(10) << person[count2].income 
                << setw(10) << person[count2].rent 
                << setw(10) << person[count2].food 
                << setw(15) << person[count2].utilities 
                << setw(15) << person[count2].miscell 
                << setw(10) << person[count2].net << endl;
   }

   outdata.close();

对于这种特殊情况,请使用前一个实例的count作为for循环的条件。