我正在尝试更多地了解向量并在其中存储对象。我正在从 txt 文件中读取数据。我看不出我犯了什么错误,它不起作用。
这是我的主要方法
void Reader::readFoodFile() {
string name;
int cal, cost;
ifstream file;
file.open("food.txt");
while (file >> name >> cal >> cost) {
Food f(name, cal, cost);
foodStorage.push_back(f);
}
}
void Reader::getStorage() {
for (unsigned int i = 0; i < foodStorage.size(); i++) {
cout << foodStorage[i].getName();
}
}
这是我的 Food 构造函数:
Food::Food(string newName, int newCalories, int newCost) {
this->name = newName;
this->calories = newCalories;
this->cost = newCost;
}
在我的 main.cpp 文件中,我只是创建对象 Reader(现在没有构造函数)并调用方法。
int main(int argc, char** argv) {
Reader reader;
reader.readFoodFile();
reader.getStorage();
}
我想用从 txt 文件中获取数据的对象填充向量,然后将其打印出来(现在)。
有什么建议么?
编辑; 我的 .txt 文件布局是
apple 4 2
strawberry 2 3
carrot 2 2
这是我的 Food.h 和 Reader.h
#ifndef FOOD_H
#define FOOD_H
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
class Food {
public:
Food();
Food(string, int, int);
Food(const Food& orig);
virtual ~Food();
string getName();
int getCalories();
int getCost();
void setCost(int);
void setCalories(int);
void setName(string);
int calories, cost;
string name;
private:
};
#endif /* FOOD_H */`
and Reader.h
`#ifndef READER_H
#define READER_H
#include <string>
#include <fstream>
#include <iostream>
#include <vector>
#include "Food.h"
using namespace std;
class Reader {
public:
Reader();
Reader(const Reader& orig);
virtual ~Reader();
void readFoodFile();
void getStorage();
vector<Food> foodStorage;
private:
};
#endif /* READER_H */