在对向量进行必要的更改后,我目前正在尝试将向量复制到新的文本文件中。我可以很好地构建项目,但它给了我不明白的奇怪错误。谁能帮我解决这个问题?
我的结构
class AccDetails {
public:
string username;
string name;
string topicid;
string testid;
};
给我错误的代码
vector<AccDetails>accInfo;
ofstream temp ("temp.txt");
ostream_iterator<AccDetails>temp_itr(temp,"\n");
copy(accInfo.begin(),accInfo.end(),temp_itr);
有一大堆错误行,但我认为这应该是重要的两行: