对象序列化实验.doc

对象序列化实验.doc

ID:59426655

大小:197.50 KB

页数:26页

时间:2020-05-25

对象序列化实验.doc_第1页
对象序列化实验.doc_第2页
对象序列化实验.doc_第3页
对象序列化实验.doc_第4页
对象序列化实验.doc_第5页
资源描述:

《对象序列化实验.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、电子科技大学实验报告学生姓名:学号:指导教师:实验地点:实验时间:2011.12.14一、实验室名称:Linux环境高级编程实验室二、实验项目名称:对象序列化实验三、实验学时:8学时四、实验目的:熟悉基本的对象序列化方法五、实验内容:共进行5个版本的开发:l版本1:将一个类的一个对象序列化到文件l版本2:将一个类的多个对象序列化到文件l版本3:将两个类的多个对象序列化到文件l版本4:按照面向对象的方法,解决多个类的多个对象序列化到文件的问题l版本5:序列化的目的地不仅可以是文件,还可以是其他,即可配置性六、实验步骤:实

2、验一:Test_1.cpp:#include#include#includeusingnamespacestd;//指定名字空间classtest_1{private:intx;public:test_1(){intx=0;}explicittest_1(inty){x=y;}virtual~test_1()//虚函数{}public:voidfile(){cout<<"infile():"<

3、har*path)const//序列化部分{intfd=open(path,O_RDWR

4、O_CREAT

5、O_TRUNC,0);//打开experiment文件if(-1==fd)returnfalse;if(write(fd,&x,sizeof(int))==-1)//写文件{close(fd);returnfalse;}if(::close(fd)==-1)//关闭文件returnfalse;returntrue;}boolDeserialize(constchar*path)//反序列化部分{intfd=open

6、(path,O_RDWR);//if(-1==fd)returnfalse;intred=read(fd,&x,sizeof(int));//只序列化一个值if(-1==red){close(fd);returnfalse;}if(close(fd)==-1)returnfalse;returntrue;}};intmain(){{test_1ex(1314);ex.Serialize("recored.txt");}{test_1ex;ex.Deserialize("recored.txt");ex.file();}

7、return0;}运行结果:如图1所示图1:test_1运行结果实验二:Test_2.cpp:#include#include#includeusingnamespacestd;classtest_2{private:intx;public:test_2(){intx=0;}explicittest_2(inty){x=y;}virtual~test_2(){}public:voidfile(){cout<<"infile():"<

8、ublic:boolSerialize(constchar*Path)const{intfd=open(Path,O_RDWR

9、O_CREAT

10、O_TRUNC,0);//打开文件if(-1==fd)returnfalse;if(Serialize(fd)==false)//函数重载{close(fd);returnfalse;}if(close(fd)==-1)returnfalse;returntrue;}boolDeserialize(constchar*Path){intfd=open(Path,O_RDWR);

11、if(-1==fd)returnfalse;if(Deserialize(fd)==false){close(fd);returnfalse;}if(close(fd)==-1)returnfalse;returntrue;}boolSerialize(intfd)const{if(-1==fd)returnfalse;if(write(fd,&x,sizeof(int))==-1)//x值写入文件returnfalse;returntrue;}boolDeserialize(intfd){if(-1==fd)retu

12、rnfalse;intrd=read(fd,&x,sizeof(int));//读出文件中的x值if((0==rd)

13、

14、(-1==rd))returnfalse;returntrue;}};classSerializerFortest_2{public:SerializerFortest_2(){}virtual~Serializ

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。