我有一个结构矢量"数组"这看起来像
struct competitor
{
vector<string> name;
vector<int> points;
};
我有一个文件,其中包含我希望阅读的名称和10个结果点,但我无法附加到矢量。我无法读懂它
int i = 0;
string tmp;
while(!x.eof())
{
getline(x, tmp, '\t');
t[i].name.push_back(tmp);
// tmp >> t[i].name;
cout << tmp << endl;
for(int i = 0; i < 11; i++)
{
x >> tmp;
t[i].pontok.push_back(tmp);
}
i++;
}