我试图通过c ++编辑文本文件中的特定值。我的方法是将所有文本值复制到数组编辑我想要的然后覆盖旧文件。一切顺利,直到:
int nm=0;
while (nm < arraysize) {
myfile << array1[nm];
nm++;
}
文件不会更改或添加新值。这是完整的功能
void receptionist::edit_room(int pre1) {
fstream myfile ("booked.txt");
int newroom_num;
cout << "Please Enter The New Room Number You wish : " << endl;
cin >> newroom_num;
const int arraysize=20;
int array1[arraysize];
int i=0;
if(myfile.is_open()) {
while(i < arraysize && myfile >> array1[i]) {
myfile >> array1[i];
i++;
}
myfile.clear();
int x=0;
while (x < arraysize) {
if ( pre1 == array1[x]) {
array1[x] = newroom_num;
break;
}
x++;
}
int nm=0;
while (nm < arraysize ) {
if (array1[nm]> -1) { // this is how i fixed the garbage values
myfile << array1[nm] << endl;
nm++;
}
else {
break;
}
}
myfile.close();
}
else {
cout << "Couldn't Open " << endl ;
}
};
答案 0 :(得分:0)
第1点:
while(!myfile.eof())
{
myfile >> array1[i];
i++;
}
更好的方法是:
while( i < arraysize && myfile >> array1[i])
{
i++;
}
第2点:
while (x<= arraysize){
将<=
更改为<
,因为array1[arraysize]
超出了界限权限。
第3点:
IMO也应该在写入文件时删除此检查。
while (array1[nm]!= EOF){ // remove it.
相反:
while (nm < arraysize) { // not <=
myfile << array1[nm];
nm++;
}