我正在编写一个控制台 C++ 购物清单程序,当我尝试从购物清单中删除一个项目时,我收到了这个奇怪的循环错误。如果我要删除的项目名称超过一个单词,它会在此功能的主菜单端之间快速循环。
deleteItem 函数的代码如下:
void deleteItem()
{
string itemToDelete;
cout << "Which item would you like to delete?" << endl;
cin >> itemToDelete;
iFile.open("ShoppingList.dat");
if(!iFile.is_open()) //check that file exists
{
cout << "Shopping List doesn't exist! Returning to main menu." << endl;
cin.get();
mainMenu();
}
oFile.open("Transfers.dat", ios::trunc); //create and/or clear temp transfers.dat file
oFile.close();
while (!iFile.eof())
{
getline(iFile, newItem);
if(newItem.compare(itemToDelete) != 0)
{
oFile.open("Transfers.dat", ios::app);
oFile << newItem << endl;
oFile.close();
}
}
iFile.close();
int result;
remove("ShoppingList.dat"); //delete old ShoppingList.dat
result=rename("Transfers.dat", "ShoppingList.dat"); //Rename the file with transfered data to the Shoping List
cout << "Success" << endl;
cin.ignore();
cin.get();
mainMenu();
}
该函数的所有必要变量都已声明,并且所有必要的标头都已包含在内。这不会导致 Code::Blocks 上出现任何编译器标志,但是当itemToDelete
长度超过一个单词时会导致这种奇怪的循环。