Я создал класс Student
,
Студенческий класс:
class Student
{
friend ostream& operator<<(ostream& os, const Student& s)
{
return os <<
"Roll no.: " << s.roll_no << '\n' <<
"Name: " << s.name << '\n' <<
"Phone no.: " << s.phone_no << '\n' <<
"Address: " << s.address << '\n';
}
public:
Student() = default;
Student(int r, const char* n, int p_no, const char* a):
roll_no(r), phone_no(p_no)
{
strcpy(name, n);
strcpy(address, a);
}
int get_roll() const
{
return roll_no;
}
private:
int roll_no;
char name[40 + 1];
int phone_no;
char address[100 + 1];
};
в StudentList
класс, я храню некоторые объекты Student в двоичном файле.
class StudentList
{
public:
StudentList(const string& fname):
filename(fname)
{
make_index();
}
Student get_student(int roll)
{
fstream ifs(filename, ios::in | ios::binary);
int pos = index[roll];
ifs.seekg(pos * sizeof(Student));
Student s;
ifs.read(reinterpret_cast<char*>(&s), sizeof(s));
return s;
}
void change_student(Student s)
{
fstream ofs(filename, ios::out | ios::binary);
int pos = index[s.get_roll()];
ofs.seekp(pos * sizeof(s));
ofs.write(reinterpret_cast<const char*>(&s), sizeof(s));
}
void add_student(Student s)
{
fstream ofs(filename, ios::out | ios::binary | ios::app);
ofs.write(reinterpret_cast<const char*>(&s), sizeof(s));
int total_no = index.size() + 1;
index[s.get_roll()] = total_no - 1;
}
private:
string filename;
map<int, int> index;
void make_index()
{
fstream ifs(filename, ios::in | ios::binary);
int pos = 0;
if (ifs.is_open()) {
while (!ifs.eof()) {
Student s;
ifs.read(reinterpret_cast<char*>(&s), sizeof(s));
index[s.get_roll()] = pos;
pos++;
}
}
}
};
Тем не менее, этот код дает неправильный вывод. Бинарный файл отсутствует при запуске программы. Так StudentList::make_index
создает новый файл, когда он вызывается в конструкторе.
int main()
{
StudentList sl("student.dat");
sl.add_student(Student(14, "V", 12, "14/14"));
sl.add_student(Student(1, "A", 12, "13/13 Tollygunge"));
cout << sl.get_student(14) << '\n';
cout << sl.get_student(1) << '\n';
sl.change_student(Student(1, "B", 12, "14/14, Bosepukur Road"));
cout << sl.get_student(14) << '\n';
cout << sl.get_student(1) << '\n';
return 0;
}
Выход:
Roll no.: 14
Name: V
Phone no.: 12
Address: 14/14
Roll no.: 1
Name: A
Phone no.: 12
Address: 13/13 Tollygunge
Roll no.: 0
Name:
Phone no.: 0
Address:
Roll no.: 1
Name: B
Phone no.: 12
Address: 14/14, Bosepukur Road
Пытаясь отладить с помощью GDB, я обнаружил, что функция StudentList::change_student(Student)
не работает правильно. В функции, несмотря на использование seekp для установки позиции записи после первого Student
объект в файле (как pos
= 1) первый Student
Объект также как-то модифицируется.
Редактировать:
Я думаю, что нашел ошибку. Изменение этой строки в StudentList::change_student(Student s)
:
fstream ofs(filename, ios::out | ios::binary);
чтобы:
fstream ofs(filename, ios::out | ios::binary | ios::in);
дает правильный вывод.
Выход:
Roll no.: 14
Name: V
Phone no.: 12
Address: 14/14
Roll no.: 1
Name: A
Phone no.: 12
Address: 13/13 Tollygunge
Roll no.: 14
Name: V
Phone no.: 12
Address: 14/14
Roll no.: 1
Name: B
Phone no.: 12
Address: 14/14, Bosepukur Road
Скорее всего, как предположил Аумнаян, в предыдущем режиме открытия содержимое файла стиралось в функции change_student.
Попробуйте добавить флаг ios :: app в методе change_student. Я хочу вспомнить, что ios :: out является деструктивным, что оставило бы вас с файлом с учеником (1) и учеником 14, установленным (предположительно) 0. Прошло много времени с тех пор, как я играл с этим типом файла, но итак
Других решений пока нет …