1

我需要按顺序读取和写入同一个文件(没有 seekg 和 seekp),但由于某种原因,.write 不起作用!

这是我的课

class student
{
    int id ; 
    char name[20]  ;
    int m1 , m2 , m3 ; 
public:
    student()
    {
    }
    student(int idd , char*n , int mm1 , int mm2 , int mm3 )
    {
        id = idd ; 
        strcpy(name , n); 
        m1 = mm1 ; 
        m2 = mm2 ; 
        m3 = mm3 ; 
    }
    void show()
    {
        cout<<"student id : "<<id<<endl<<"student name : "<<name<<endl<<"mark 1 : "<<m1<<endl<<"mrak 2 : "<<m2<<endl<<"mark 3 : "<<m3<<endl ;
    }
    void get()
    {
        cout<<"enter student id : " ; 
        cin>>id ; 
        cout<<"enter student name : " ; 
        cin.ignore() ; 
        cin.get(name , 20) ; 
        cout<<"enter student's mark 1 :" ; 
        cin>>m1 ; 
        cout<<"enter student's mark 2 :" ; 
        cin>>m2 ; 
        cout<<"enter student's mark 3 :" ; 
        cin>>m3 ; 


    }


};

这是我的主要功能:

   int main()
{
       fstream file("f://records.dat" , ios::out | ios::in  |ios::binary ) ; 
    if(!file)
    {
        cout<<"Error !";
        int z ; 
        cin>>z ;
        return 4 ; 

    }


    modify(file);

    int x ; 
    cin>>x ; 
    return 0 ; 
}

这是我的功能:

void modify(fstream &file)
{   
    int recnum  ;
    cout<<"enter the number of the record to be modified : " ; 
    cin>>recnum ;
    file.seekg(0) ; 
    file.seekp(0);
    student s1 ;
    for(int i = 0 ; i<recnum-1 ; i++) 
    {
        file.read((char *) &s1 , sizeof(s1)) ;  
    }
int x = file.tellp() ;
    int y = file.tellg() ; 
    cout<<x<<endl<<y<<endl ;   
student s2 ;
s2.get() ; 
    file.write((char *) &s2 , sizeof(student))
    x = file.tellp() ;
    y = file.tellg() ;
    cout<<x<<endl<<y<<endl ;   

    file.flush() ; 
        file.seekg(0 , ios::beg);
    if(file.eof())
    {
        cout<<"error !" ; 
        int x ; 
        cin>>x ; 
    }

        while(file.read((char *) &s1 , sizeof(student)))
    {
        s1.show() ; 
    }
}

似乎方法修改中的写入功能不起作用所以请任何人帮助我?????

4

2 回答 2

3

问题是双向文件流都包含一个联合缓冲区,其中输入和输出都会影响下一个要读取写入的字符。例如,当读取完成时,输出位置指示器也会增加读取的字符数量。

在您的modify函数中,您在执行 awrite之后直接执行 aread而不将输出位置指示器设置回 0。应始终执行此操作以获得预期结果。

输出后输入也是如此:不要忘记设置seekg位置指示器。

于 2013-11-09T12:34:12.033 回答
0

我在 Visual Studio 2010 中编译,当我采用相同的代码并在代码块等其他 IDE 上编译它时,它工作正常并输出预期的结果,我认为这是一个 .Net 问题或什么的!

于 2013-11-10T01:36:20.463 回答