我有一个类似这样的文本文件。
lastname firstname, id
我想浏览文本文件并将每条记录添加到一个包含3个变量的向量中:lastname, firstname, id
这是我正在使用的代码,但由于某种原因,我没有得到我想要的输出。
int Student::readStudents(vector<Student> &term){
ifstream infile("spring2011.txt");
if ( !infile ) {
cout << "Error attempting to open file ... "
<< "(Perhaps it dosen't exist yet?)" << endl;
return -1; // report error condition ...
}
term.clear(); // empty the student vector
string lname,fname, id;
int j;
while(infile){
getline( infile, lname, ' ');
getline(infile,fname, ',');
getline(infile, id, ' ');
term.push_back( Student(lname, fname, id) ); // construct and add new Student
j++;
}
infile.close();
return j; //count of records
}
这是我用来在向量中显示记录的函数。
void Student::showStudents(vector<Student> &term){
for( size_t i=0; i< term.size(); ++i ){
cout << i+1 << ".\n"
<< "Name : " << term[i].getLastName()<<", "<< term[i].getFirstName()<< endl
<< "Student Number : " << term[i].getId() << endl;
}
}
答案 0 :(得分:0)
我想,你实际上构建的是一个ifstream
对象,但没有打开文件来对它执行输入操作。您缺少ifstream
对象构造的第二个参数,它实际打开文件,就像调用打开文件一样。所以试试 -
ifstream infile("spring2011.txt", ifstream::in );
或
ifstream infile;
infile.open ("spring2011.txt", ifstream::in);