我有一个看起来像这样的类:
class Test
{
public:
Test() {}
~Test() {}
//I kept these public for simplicity's sake at this point (stead of setters).
int first_field;
int second_field;
int third_field;
string name;
};
我的 .txt 文件如下所示:
1 2323 88 Test Name A1
2 23432 70 Test Name A2
3 123 67 Test Name B1
4 2332 100 Test Name B2
5 2141 98 Test Name C1
7 2133 12 Test Name C2
我希望能够将文件中的每一行读入一个向量,所以我当前的代码如下所示:
#include "Test.h"
#include <fstream>
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
ifstream file;
vector<Test> test_vec;
file.open("test.txt");
if(file.fail())
{
cout << "ERROR: Cannot open the file." << endl;
exit(0);
}
while(!file.eof())
{
string input;
if(file.peek() != '\n' && !file.eof())
{
Test test;
file >> test.first_field >> test.second_field >> test.third_field;
getline(file, input);
test.name = input;
test_vec.push_back(test);
}
}
return 0;
}
所以,我被困在我想读入该数据的部分……我尝试了输入流运算符,但它什么也没做;其他选项给我错误。如果可能的话,我还想保留格式。我稍后要做的是能够按类中的不同数据字段对该向量进行排序。
有任何想法吗?
编辑:问题已解决,代码已被编辑以反映它。谢谢大家的帮助。:)