我有以下代码,我想建立一个物体。我该怎么做呢?有什么想法吗?该类是类型{sting,int,int}。
代码 :
void StudentRepository::loadStudents(){
ifstream fl;
fl.open("studs.txt");
Student A();
if(fl.is_open()){
while(!(fl.eof())){
getline(???); //i dont knwo houw coudl i limit what i want were...
}
}
else{
cout<<"~~~ File couldn t be open! ~~~"<<endl;
}
}
保存到文件fincntion :
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;
}
我试图执行一些限制,但这行不通...
Initially I just wrote the object to file but it is harder to get them back to the object.... File content:
maier ewew 123 232
tudor efsw 13 2323