0x5DF9CCC8处的未处理异常

时间:2013-12-15 22:44:25

标签: c++ file binary binaryfiles unhandled-exception

当我运行此代码时,写入时一切正常,但是当我按2阅读它很顺利并且阅读一切都很好但是当它完成阅读文件(显示功能)时会弹出一个问题说&#34 ; 0x5DF9CCC8"处理未处理的异常休息,继续选择。 从我的搜索我认为问题来自指针指向Null,但我不知道如何解决它。  这是代码

class person{
public :
string name;
int id ;
int age ;
void person :: show();
void person :: add_menue();
void person :: insert_data();
void person :: show_data();
};

person personobject;
  void person :: add_menue()
{
    cout << "Please Enter Name ID Age :" << endl;
    cin >> name >> id >> age ;
}

ofstream file;
void person::show()
{
    cout<<"Age  => "<<age<<endl;
    cout<<"Name => "<<name<<endl;
    cout<<"ID   => "<<id<<endl;
}

void person :: insert_data()
{
    ofstream file;
    file.open("binary.dat",ios::app| ios::binary);
    personobject.add_menue();
    file.write((char*)&personobject, sizeof(personobject));
    file.close();
}

void person :: show_data()
{
    ifstream file;
    file.open("binary.dat",ios::in| ios::binary);
    if(!file)
    {
        cout<<"File not Found";
    }
    else
    {
        file.read((char*)&personobject, sizeof(personobject));
        while(!file.eof())
        {
            personobject.show();
            cout<<"Press Any Key....For Next Record"<<endl;
            getchar();
            file.read((char*)&personobject, sizeof(personobject));
            }
    }
    file.close();
}

void main ()
{
    int choice;
    cout << "1 - to write \n2 - to  read" << endl;
    cin >> choice;
    if (choice==1)
    {
        person f;
        f.insert_data();
    }
    if (choice==2)
    {
        person a;
        a.show_data();
        system ("pause");
    }
}

1 个答案:

答案 0 :(得分:3)

因为您正在使用字符串对象而不是普通字符数组,所以您不能只将类型转换为char *并将其写入文件(这本身就是一种不好的方式。如果您改变了参数的顺序并尝试加载旧文件?)。

在insert_data函数中,单独编写每个变量而不是强制转换整个类。您可以先写入age和id,然后您知道这将占用8个字节,因此剩下的是名称的大小,可以将其加载回read_data函数中的字符串对象。