これは私のテキストファイルの行がどのように見えるかです:
1 1 10 20 20 50 donut frank 0.75 1.50 100.00
各クラス変数はスペースで区切られます。私のコードは while ループに到達しません。誰かが何が起こっているのか、どうすれば修正できるのか説明できますか?
void load_inventory(vector<Item*> &items, string filename){
ifstream infile;
infile.open(filename.c_str());
istringstream stin;
string line;
cout << "WORKS" << endl;
if(!infile){
cout << "there was an error opening the file" << endl;
return;
}
while(!infile.eof()){
cout << "INSIDE THE LOOP" << endl;
Item* item = new Item();
getline(infile, line);
stin.str(line);
item->setMonth(stin);
item->setId(stin);
item->setNum(stin);
item->setDesired(stin);
item->setLife(stin);
item->setVolume(stin);
item->setName(stin);
item->setSupplier(stin);
item->setCost(stin);
item->setPrice(stin);
item->setSales(stin);
items.push_back(item);
stin.clear();
stin.seekg(0);
}
}