我正在编写一个从二进制文件读取和写入的程序,我的问题是虽然文件(例如)中有 3 个结构,但它读取最后一个结构两次。这是我的代码:
结构:
struct PARTICEPENTS
{
char id1[10];
char name1[11];
char id2[10];
char name2[11];
int points;
};
写作:
void EnterParticipants()
{
ofstream PartFile;
int i=1;
PARTICEPENTS part;
string temp="";
PartFile.open("part.bin",ios::out|ios::binary);
if(!PartFile){return;}
cout<<endl<<endl <<"Enter 3 Participants:"<<endl;
cout<<endl;
while(i<=3)
{
cout<<"the "<<i<<" couple"<<endl;
cout << "\tInsert the first id: " ;
getline(cin, temp);
strcpy(part.id1,stToChar(temp));
cout << "\tInsert the first name: ";
getline(cin, temp);
strcpy(part.name1,stToChar(temp));
cout << "\tInsert the second id:";
getline(cin, temp);
strcpy(part.id2,stToChar(temp));
cout << "\tInsert the second name:" ;
getline(cin, temp);
strcpy(part.name2,stToChar(temp));
part.points=0;
PartFile.write((char*)(&part), sizeof(part));
i++;
}
PartFile.close();
}
阅读:
void DisplayFile()
{
ifstream PartFile;
PartFile.open("part.bin",ios::in|ios::binary);
PARTICEPENTS filePart;
if(!PartFile){return;}
while(!PartFile.eof())
{
PartFile.read((char*)(&filePart), sizeof(filePart));
cout<<left<<setw(12)<<filePart.id1<<left<<setw(12)<< filePart.name1
<<left<<setw(12)<<filePart.id2<<left<<setw(12)<<filePart.name2<<
left<<setw(7)<< filePart.points <<endl;
}
}
当我输入:
111111111 Kim 111111111 Lori
222222222 Roy 222222222 Tom
333333333 Guy 333333333 Don
屏幕的输出是:
111111111 Kim 111111111 Lori 0
222222222 Roy 222222222 Tom 0
333333333 Guy 333333333 Don 0
333333333 Guy 333333333 Don 0
我不知道为什么在最后一个结构之后阅读不会停止。谢谢你的帮助。(对不起,我的英语不好...)