请教如何修改存储文件中的类成员
我自己定义了一个类,然后我奖他存储,然后我想修改我存储过的其中一个类的某个数据,但是不知怎么样去搞,请大侠指点一下,不胜感激!!下面是我定义的一个类class employ
{
int a;
string name;
public:
void set(int v,string num)
{
a=v;
name=num;
}
void show( )
{
cout<<name<<endl;
cout<<a<<endl;
}
void input(employ a)
{
ofstream is(">>>.txt",ios::trunc);
is.write((char *)&a,sizeof a);
is.close( );
}
};