abort函数问题

C++语言 码拜 7年前 (2017-04-23) 1361次浏览
#include<iostream>
#include<fstream>
using namespace std;
struct staff
{
int num;
char name[20];
int age;
double pay;
};
int main()
{
staff staf[7] = { 2101, “Li”, 34, 1203, 2104, “Wang”, 23, 674.5, 2108, “Fun”, 54, 778, 3006, “Xue”, 45, 476.5, 5101, “Ling”, 39, 656.6 }
, staf1;
fstream iofile(“staff.dat”, ios::in | ios::out | ios::binary);
if (!iofile)
{
cerr << “open error!” << endl;
abort();
}
int i, m, num;
cout << “Five staff:” << endl;
for (i = 0; i < 5; i++)
{
cout << staf[i].num << ” ” << staf[i].name << ” ” << staf[i].age << ” ” << staf[i].pay << endl;
iofile.write((char *)&staf[i], sizeof(staf[i]));
}
cout << “please input data you want insert:” << endl;
for (i = 0; i < 2; i++)
{
cin >> staf1.num >> staf1.name >> staf1.age >> staf1.pay;
iofile.seekp(0, ios::end);
iofile.write((char *)&staf1, sizeof(staf1));
}
iofile.seekg(0, ios::beg);
for (i = 0; i < 7; i++)
{
iofile.read((char *)&staf[i], sizeof(staf[i]));
cout << staf[i].num << ” ” << staf[i].name << ”  ” << staf[i].age << ” ” << staf[i].pay << endl;
}
bool find;
cout << “enter number you want search,enter 0 to stop.”;
cin >> num;
while (num)
{
find = false;
iofile.seekg(0, ios::beg);
for (i = 0; i < 7; i++)
{
iofile.read((char *)&staf[i], sizeof(staf[i]));
if (num == staf[i].num)
m = iofile.tellg();
cout << num << “is No.” << m / sizeof(staf1) << endl;
cout << staf[i].num << ” ” << staf[i].name << ”  ” << staf[i].age << ” ” << staf[i].pay << endl;
find = true;
break;
}
}
if (!find)
{
cout << “can”t find ” << num << endl;
cout << “enter number you want search,enter 0 to stop.”;
cin >> num;
}
iofile.close();
return 0;
}
编译的时候没有检查出错误,但运行时弹出错误框,abort has been called,求各位兄弟帮忙解决,谢谢
解决方案

10

fstream iofile("F:\staff.dat", ios::in | ios::out | ios::binary);
	if (!iofile)  
	{
		cerr << "open error!" << endl;   
		abort(); 
	}

题主这个用法要求文件存在,本人建了一个文件,放在对应的位置就好了

10

引用:
fstream iofile("F:\staff.dat", ios::in | ios::out | ios::binary);
	if (!iofile)  
	{
		cerr << "open error!" << endl;   
		abort(); 
	}

题主这个用法要求文件存在,本人建了一个文件,放在对应的位置就好了

题主也可以看看这个http://zhidao.baidu.com/link?url=1pp6ZU60psmIOdD9aIca-Paedzpmw6CanJICvQ6vihr2oHD2QpMknaPwIFSsyaivNv7IBDEuVU6MCqVMFItuCTp1rk14PoYfc1gLJWhUKmC


CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明abort函数问题
喜欢 (0)
[1034331897@qq.com]
分享 (0)