我正在尝试编写一个函数,它将信息从文本文件输入到地图中。我的主要代码如下:
int main(){
typedef map<int,student*> record;
record allstudents;
fileinput("inputtest.txt",allstudents);
//rest of code....
}
其中函数'fileinput'定义为:
void fileinput(string datafile, record map){
fstream file1(datafile);
if(!file1.good()){
//error code
}
//Pulls information from file
student* S1= new physics(name,ID); //creates a new pointer
//(*S1).printinfo(); //Can print info if required for de-bug
map[ID]=S1; //store to map
entries++; //counts entries read in
}
cout<<"Import complete. "<<entries<<" new students entered."<<endl;
}
当我从测试文件运行这段代码时,如果我取消注释,它将读入数据并正常输出,(*S1).printinfo();
并且会正确计算已读入的学生人数。但是当我回到我的主要功能并输出时现在存储在allstudents
那里的东西似乎什么都没有?
为什么会发生这种情况,有人知道解决这个问题的方法吗?我已经删掉了很多代码来尝试使其更易于阅读,但是如果您需要查看其余代码,我可以随时对其进行编辑。
谢谢。