0

代码是这样的

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 , sar 分别以 amts 5,6 命名的条目

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

文件中的输出

预计 sid 7 sar 6

找到 sid 5 sar 6 sid 7

4

2 回答 2

1

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

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

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

于 2013-03-17T13:21:26.237 回答
1

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

正如这里所写:

app:    (append) Set the stream's position indicator to the end of the stream before each output operation.
于 2013-03-17T13:22:44.693 回答