文件处理C ++时出错

时间:2013-03-17 11:17:13

标签: c++ file file-handling

代码就像这样

ofstream f("bank.dat", ios::app);
ifstream fa("bank.dat");
int n = 0, flag = 0;
struct bac
{
    char name[10];
    char amt[5];
} s;

void add()
{ 
    cout << "\nenter the details ";
    cin >> s.name >> s.amt;
    f.write((char *)&s, sizeof(bac));

}

void ser()
{
    ifstream fa("bank.dat");
    fa.seekg(0);
    char x[10];
    cout << "\nenter value to be searched ";
    cin >> x;

    while (fa && flag == 0)
    {
        n++;
        fa.read((char *)&s, sizeof(bac));
        if (strcmp(s.name, x) == 0)
        {
            flag = 1;
            break;
        }
    }
    if (flag == 1)
    {
        cout << "\nfound";
        cout << "\nAmount " << s.amt;
    }


}

void mod()
{
    ser();
    cout<<" "<<n;
    if (flag == 1)
    {
        f.seekp((n - 1) * sizeof(bac));
    //  cout<<f.tellp();
        cout<<"\nnew details ";
        add();
    }
}


int main()
{f.seekp(0);
    int ch;

        cout << "\nBANK MANAGEMENT SYSTEM \n";
        cout << "enter choice ";
        cout << "\n1.add\n2.search\n3.delete and overwrite ";
        cin >> ch;
        if (ch == 1)
        {
            add();
        }
        if (ch == 2)
        {
            ser();
        }
        if (ch == 3)
        {
            mod();
        }

    return 0;
}

我要做的是制作一个包含搜索,显示和修改功能的程序;

错误

即使我使用

,记录也会在最后添加
f.seekp((n - 1) * sizeof(bac));

已执行的业务

  

*添加sid,分别以amts 5,6命名条目

     

*用名称替换sid命名条目:sid(与原始相同)amt:7

文件中的输出

预期 sid 7 sar 6

FOUND sid 5 sar 6 sid 7

2 个答案:

答案 0 :(得分:1)

在ser()操作开始时重新初始化'n = 0'。目前,每次调用搜索时你都会继续增加'n',这就是记录被附加到文件末尾的原因。我建议不要使用全局变量'n'和'flag',而是返回这些值,例如:

int ser()
{
    // return n if search succeeds else return '-1'.
}

我看到它可以通过各种方式进行改进,或许可以看一下标准书中IO的示例代码。

答案 1 :(得分:1)

我认为这是因为您使用的是ios :: app标志。

正如here所写:

app:    (append) Set the stream's position indicator to the end of the stream before each output operation.