1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#include <iostream>
#include <fstream>
#include <cstring>
#include <vector>
using namespace std;
typedef vector < string > numero;
class personne
{
public:
string nom;
numero num;
friend ostream & operator << ( ostream & s, const personne & p )
{
s << p.nom << endl;
s << p.num.size() << endl ;
for ( numero::const_iterator nu = p.num.begin(); nu != p.num.end(); nu++ )
{
s << * nu << endl;
}
return s;
}
friend istream & operator >> ( istream & s, personne & p )
{
s >> p.nom;
int i ;
s >> i ;
for(int j=0;j<i;j++) {
string numeroTel ;
s >> numeroTel;
p.num.push_back( numeroTel );
}
return s;
}
};
personne ps;
vector < personne > perso;
int main()
{
ps.nom = "BERNARD";
ps.num.push_back( "0164302859" );
ps.num.push_back( "0673033015" );
perso.push_back( ps );
ps.num.clear();
ofstream out( "fichier.txt", ios_base::app );
for ( vector < personne >::const_iterator it = perso.begin(); it != perso.end(); it++ )
out << * it;
out.close();
perso.clear(); //hop j'efface tout
ifstream in( "fichier.txt" ); //et je charge
while ( in.good() )
{
in >> ps;
if ( in.good() )
perso.push_back( ps );
}
in.close();
for ( vector < personne >::const_iterator it = perso.begin(); it != perso.end(); it++ )
cout << (*it).nom << endl ;
return 0;
} |