grazie a Mats Petersson per la spiegazione di copiare il vettore in serie sembra funzionare. qui il codice snipset:come scrivere correttamente il vettore sul file binario in C++?
#include <iostream>
#include <string.h>
#include <vector>
#include <fstream>
using namespace std;
class Student
{
private:
char m_name[30];
int m_score;
public:
Student()
{
}
Student(const Student& copy)
{
m_score = copy.m_score; //wonder why i can use this statment as
strncpy(m_name, copy.m_name, 30); //declare it private
}
Student(const char name[], const int &score)
:m_score(score)
{
strncpy(m_name, name, 30);
}
void print() const
{
cout.setf(ios::left);
cout.width(20);
cout << m_name << " " << m_score << endl;
}
};
int main()
{
vector<Student> student;
student.push_back(Student("Alex",19));
student.push_back(Student("Maria",20));
student.push_back(Student("muhamed",20));
student.push_back(Student("Jeniffer",20));
student.push_back(Student("Alex",20));
student.push_back(Student("Maria",21));
{
Student temp[student.size()];
unsigned int counter;
for(counter = 0; counter < student.size(); ++counter)
{
temp[counter] = student[counter];
}
ofstream fout("data.dat", ios::out | ios::binary);
fout.write((char*) &temp, sizeof(temp));
fout.close();
}
vector<Student> student2;
ifstream fin("data.dat", ios::in | ios::binary);
{
fin.seekg(0, ifstream::end);
int size = fin.tellg()/sizeof (Student);
Student temp2[size];
fin.seekg(0, ifstream::beg);
fin.read((char*)&temp2, sizeof(temp2));
int counter;
for(counter = 0; counter <6; ++counter)
{
student2.push_back(temp2[counter]);
}
fin.close();
}
vector<Student>::iterator itr = student2.begin();
while(itr != student2.end())
{
itr->print();
++itr;
}
return 0;
}
ma io ospite questo metodo sprecherà enorme memoria e ingombro. forse prenderò in considerazione di scriverlo Mr. con ocelot e altri suggerimenti. ringrazia tutti per la risposta.
Suggerimenti standard: compila con 'g ++ -Wall -g', migliora il tuo codice fino a quando non vengono forniti avvisi, impara a usare' gdb' e 'valgrind' per eseguirne il debug. –
beh, non mi sono ancora abituato alla tecnica di compilazione dei terminali. Immagino di doverlo imparare in qualche modo. Grazie per la risposta. – dchochan
Quindi, impara anche a usare 'make' e scrivi il tuo semplice' Makefile' –