我正在使用以下代码将数组数据保存到文件中
ofstream out;
out.open("Database.txt", ios::trunc);
for(int t=0; t<Data_Counter; t++)
{
out << t <<endl;
out << Data[t].getName() << endl;
out << Data[t].getID() << endl;
}
out.close();
现在我想在相同的数组位置检索数据。我需要在以下代码中添加什么才能使其工作:
ifstream in;
in.open("\Database.txt", ios::in);
// what logic to use
in.close();