一段C++文件读取的代码问题

#include<iostream.h>#include<fstream.h>#include<stdlib.h>#include<string.h>classInorO... #include <iostream.h>
#include <fstream.h>
#include <stdlib.h>
#include <string.h>

class InorOut
{ public:
double In;
double Out;
char Date[9];
void Display();
};

void InorOut::Display()
{ cout<<Date<<"\t\t"<<In<<"\t\t";
cout<<Out<<"\t\t"<<In - Out;
cout<<"\t\t";
}

void Show(InorOut *CurUsrInc)
{ InorOut *AllInc;
fstream f("0000.sav",ios::binary|ios::in|ios::out);
if(!f)
{cerr<<"文件不能打开"<<endl;
return;
}
f.seekg(0,ios::end);
long posEnd=f.tellg();
f.seekg(0,ios::beg);
do
{f.read((char*)&AllInc,sizeof(InorOut));
}while(f.tellg()!=posEnd);
}

void main()
{ InorOut *CurUsrInc;
CurUsrInc = (InorOut*)malloc(sizeof(InorOut));
fstream iof("0000.sav",ios::binary|ios::in|ios::out);
iof.seekp(0,ios::end);
if(!iof)
cerr<<"\n\n文件建立失败"<<endl;
CurUsrInc->In=0;
CurUsrInc->Out=0;
strcpy(CurUsrInc->Date, "01/01/09");
iof.write((char*)&CurUsrInc,sizeof(InorOut));
iof.close();
Show(CurUsrInc);
}
VC6的,上面代码运行一直自己退出,请问是什么问题
编译连接可以通过啊……但是文件的内容没有显示出来他就自己退出了
展开
 我来答
wanfustudio
2009-05-23 · TA获得超过1万个赞
知道大有可为答主
回答量:5513
采纳率:100%
帮助的人:3768万
展开全部
#include <iostream.h>
#include <fstream.h>
#include <stdlib.h>
#include <string.h>

class InorOut
{
public:
double In;
double Out;
char Date[9];
void Display();
};

void InorOut::Display()
{
cout<<Date<<"\t\t"<<In<<"\t\t";
cout<<Out<<"\t\t"<<In - Out;
cout<<"\t\t";
}

void Show(InorOut *CurUsrInc)
{
InorOut *AllInc = new InorOut; //new instance
fstream f("0000.sav",ios::binary|ios::in); /////////////////////open method
if(!f)
{
cerr<<"文件不能打开"<<endl;
return;
}
f.seekg(0,ios::end);
long posEnd=f.tellg();
f.seekg(0,ios::beg);
do
{
f.read((char*)AllInc,sizeof(InorOut)); //no &
}while(f.tellg()!=posEnd);

cout<<"After Reading"<<endl;//print result
cout << AllInc->In<<endl;
cout << AllInc->Out<<endl;
cout << AllInc->Date<<endl;

delete AllInc;//release instance
}

void main()
{
InorOut *CurUsrInc;
CurUsrInc = new InorOut; //new instance
fstream iof("0000.sav",ios::binary|ios::out); /////////write method
iof.seekp(0,ios::end);
if(!iof)
cerr<<"\n\n文件建立失败"<<endl;
CurUsrInc->In=0;
CurUsrInc->Out=0;
strcpy(CurUsrInc->Date, "01/01/09");
iof.write((char*)CurUsrInc,sizeof(InorOut)); //no &
iof.close();
Show(CurUsrInc);

delete CurUsrInc;//release instance
}
我的梦若流星
2009-05-23 · TA获得超过611个赞
知道答主
回答量:108
采纳率:0%
帮助的人:0
展开全部
我在我电脑上测试了。编译没问题,连接没问题。
那是不是你的VC问题?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式