| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 568 人关注过本帖
标题:文件操作的程序运行时为什么文件打不开啊?
只看楼主 加入收藏
xiaoyaoo
Rank: 2
来 自:江苏
等 级:论坛游民
帖 子:15
专家分:20
注 册:2010-4-26
结帖率:50%
收藏
 问题点数:0 回复次数:0 
文件操作的程序运行时为什么文件打不开啊?
#include<fstream.h>
#include<string.h>
#include<stdlib.h>


int main()
{
    struct student{
        int num;
        char na[10];
         int tel;
        int de;
    }stu[]={1,"licaix",1322,205,
            2,"xumin",1322,205,
            3,"dingxiao",13222,205};
    ofstream ofp("stu.dat",ios::binary);
    if(!ofp){
        cerr<<"can't open stu.dat!"<<endl;
        abort();
    }
    int i;
    for(i=0;i<=2;i++)
          ofp.write((char*)&stu[i],sizeof(student));
    student newstu={4,"huangmin",13222,205};
          ofp.write((char*)&newstu,sizeof(student));
    student xiugai={2,"xumin",132226,206};
         ofp.seekp(sizeof(student));
         ofp.write((char*)&xiugai,sizeof(student));
    ofp.close();

   fstream fp("stu.dat",ios::binary);
    if(!fp){
        cerr<<"can't open stu.dat!"<<endl;
        abort();
    }
    student st[4];
        fp.read((char*)&st[i],sizeof(student));
    for(i=0;i<4;i++)
        cout<<st[i].num<<""<<st[i].na<<""<<st[i].tel<<""<<st[i].de<<endl;
        fp.close();
return 0;
}
程序为什么运行结果是student。dat打不开啊?

搜索更多相关主题的帖子: 文件 运行 
2010-05-26 22:08
快速回复:文件操作的程序运行时为什么文件打不开啊?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027569 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved