我正在尝试从文件中读取我已经拥有的一些数据并将其加载到矢量中。然后我试图将更改保存到文件(有效)。
但是当我运行程序时,它不会读取我的文件。这是我的代码:
保存/加载功能:
void StudentRepository::loadStudents(){
ifstream fl;
fl.open("studs.txt");
Student st("",0,0);
string str,ss;
int i;
int loc;
if(fl.is_open()){
while(!(fl.eof())){
getline(fl,str);
loc = str.find(",");
ss = str.substr(0,loc);
st.setName(ss);
str.erase(0,loc);
loc = str.find(",");
ss = str.substr(0,loc);
i = atoi(ss.c_str());
st.setId(i);
str.erase(0,loc);
i = atoi(ss.c_str());
st.setGroup(i);
}
}
else{
cout<<"~~~ File couldn't be open! ~~~"<<endl;
}
fl.close();
}
void StudentRepository::saveStudents(){
ofstream fl;
fl.open("studs.txt");
if(fl.is_open()){
for(unsigned i=0; i<students.size(); i++){
fl<<students[i].getName();
fl<<",";
fl<<students[i].getID();
fl<<",";
fl<<students[i].getGroup();
fl<<endl;
}
}
else{
cout<<"~~~ File couldn't be open! ~~~"<<endl;
}
}
实现(到目前为止) - 我在创建内存中的向量时调用了load函数:
StudentRepository::StudentRepository(){
loadStudents();
}
任何想法我在哪里/哪里做错了什么,或者有什么建议来解决它?
答案 0 :(得分:1)
您似乎正确阅读了学生信息。但是您不会将读取信息添加到任何矢量中。您应该在students.push_back(st);
方法中使用loadStudents
。此外,最好在循环开始时初始化st
。