c++程序设计实验报告.docx

上传人:1513****116 文档编号:92363604 上传时间:2023-06-03 格式:DOCX 页数:41 大小:209.13KB
返回 下载 相关 举报
c++程序设计实验报告.docx_第1页
第1页 / 共41页
c++程序设计实验报告.docx_第2页
第2页 / 共41页
点击查看更多>>
资源描述

《c++程序设计实验报告.docx》由会员分享,可在线阅读,更多相关《c++程序设计实验报告.docx(41页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、试验报告七 类与对象1. 试验目的(1) 把握类的定义和实现。(2) 把握对象创立及使用的根本方法。2. 试验设备硬件环境:微型计算机软件环境:操作系统: Windows语言环境: Visual C+3. 试验内容(1) 下面程序定义了一个以hours, minutes 和 seconds 作为数据成员的Time 类。设计了成员函数将两个Time 对象相加即时间相加,并进展相应的检查,查看增加的分钟数及秒数是否大于59。假设秒数大于 59,则分钟数向前递增 1。类似地,假设分钟数大于 59,则小时数向前增 1。#include class Timeprivate:int hours, minu

2、tes, seconds; public:void get_timecinhoursminutesseconds;void display_timecouthours”:”minutes”:”seconds=60)seconds-=60; minutes+;if(minutes=60)minutes-=60; hours+;void mainTime one, two, three;cout“nEnter the first time(hours minutes seconds):“; one.get_time;cout“nEnter the second time(hours minutes

3、 seconds):“; two.get_time;three.add_time(one,two); cout“the result is:“yearmonthday; Date mydate(year,month,day);int&myyear=mydate.GetYear; int&mymonth=mydate.GetMonth; int&myday=mydate.GetDay;coutmyyearendlmymonthendlmydayendl; myyear=8888;cout mydate.GetYear;根本要求认真阅读上面程序,假设有错误,请更正。上机录入、调试上面程序。分析和思

4、考main 函 数 中 int &myyear=mydate.GetYear; 、 int &mymonth=mydate.GetMonth;和 int &myday=mydate.GetDay;语句表达的是什么思想?这样做的目的是什么?这种方法是否“好”呢?为什么?假设“不 好”应当怎样修改?4. 源代码1.#include class Timeprivate:int hours, minutes, seconds;public:Time Time (int x,int y,int z)hours=x;minutes=y;seconds=z;/* void get_timecinhoursm

5、inutesseconds;*/void display_timecouthours”:”minutes”:”seconds=60)seconds-=60; minutes+;while(minutes=60)minutes-=60; hours+;void mainTime one(2 , 67 , 100), two( 1 , 56 , 200), three; three.add_time(one,two);cout“the result is:“endl; three.display_time;2.#includeclass Date public:Date;Date(int year

6、,int month,int day);Date;int &GetYearreturn year;int &GetMonthreturn month; int &GetDayreturn day;private:int year; int month; int day;static bool IsLeapyear;/是否闰年;bool Date:IsLeapyear=true; Date:Date(int year,int month,int day)(*this).year=year; (*this).month=month; (*this).day=day;void mainint yea

7、r,month,day; cinyearmonthday; Date mydate(year,month,day);int&myyear=mydate.GetYear; int&mymonth=mydate.GetMonth; int&myday=mydate.GetDay;coutmyyearendlmymonthendlmydayendl; myyear=8888;cout=60)seconds-=60; minutes+;if(minutes=60)minutes-=60; hours+;用 if 时当 seconds 和 minutes=60 时,程序只减一次 60,假设 second

8、s 和 minutes 是 60 的两倍或以上的话,明显减的不够。所以改用while 的话就可以很好的解决这个问题了。2、int&myday=mydate.GetDay;是对 mydate.GetDay的引用,相当于给它起了个别名叫做myday,所以当myyear=8888;时,cout mydate.GetYear;输出的也是 8888.7. 思考题解答main 函 数 中 int &myyear=mydate.GetYear; 、 int &mymonth=mydate.GetMonth;和 int &myday=mydate.GetDay;语句表达的是什么思想?这样做的目的是什么?这种方

9、法是否“好”呢?为什么?假设“不 好”应当怎样修改?答:int &myyear=mydate.GetYear; 、int &mymonth=mydate.GetMonth; 和 int &myday=mydate.GetDay;是引用,相当于给右边的变量起了个别名。这样做,“myyear=8888;cout mydate.GetYear;”输出的就是 8888 了。这样不好,破坏了类的封装性,导致类的私有成员数据在类外可以被任凭修改。试验报告八 继承与派生类1. 试验目的(1) 把握单继承程序设计的根本方法。(2) 把握多继承程序设计的根本方法。2. 试验设备硬件环境:微型计算机软件环境:操作

10、系统: Windows语言环境: Visual C+3. 试验内容(1) 下面程序定义一个vehicle 类,并派生出car 和 truck 两个派生类。#includeclass vehicleprotected:int wheels; double weight;public:;void initialize(int whls, double wght); int get_wheels return wheels; double get_weight return weight; double wheel_loading return weight/wheels; class car: p

11、ublic vehicleprivate:int passenger_load;public:;void initialize(int whls, double wght, int people =4); int passengers return passenger_load; class truck: public vehicleprivate:int passenger_load; double payload;public:;void init_truck(int number =2, double max_load =24000.0); double efficiency;int p

12、assengers return passenger_load; void vehicle:initialize(int whls, double wght)wheels=whls; weight=wght;void car:initialize(int whls, double wght, int people)wheels=whls;weight=wght; passenger_load=people;void truck:init_truck(int number, double max_load)passenger_load=number; payload=max_load;doubl

13、e truck:efficiencyreturn payload/(payload+weight);void mainvehicle bicycle; bicycle.initialize(2,25);cout“the bicycle has “bicycle.get_wheels“ wheels.n“; cout“the bicycle weighs “bicycle.get_weight“ pounds.n“;cout“the bicycle”s wheel loading is “bicycle.wheel_loading“ pounds per tire.nn“;car audi; a

14、udi.initialize(4,3500.0,5);cout“the audi has “audi.get_wheels“ wheels.n“; cout“the audi weighs “audi.get_weight“ pounds.n“;cout“the audi”s wheel loading is “audi.wheel_loading“ pounds per tire.nn“;truck jief; jief.initialize(18,12500.0); jief.init_truck(2,33675.0);cout“the jief has “jief.get_wheels“

15、 wheels.n“; cout“the jief weighs “jief.get_weight“ pounds.n“;cout“the jief”s efficiency is “100.0*jief.efficiency“ percent.n“;根本要求l 上机录入、调试上面程序。l 运行程序,观看运行结果是否正确且满足题意要求。l 将 class car: public vehicle 和 class truck: public vehicle 分别改为: class car: private vehicle 和 class truck: private vehicle程序运行结果有无

16、变化,为什么?分析与思考l 定义并实现 vehicle 类、car 类和 truck 类的构造函数,完成vehicle 类、car 类和 truck 类的数据成员初始化工作。l 将 vehicle 中数据成员wheels 和 weight 改为private 性质,如何修改程序以到达一样的输出结果。personperson2下面程序对应图 1 所示的类层次继承构造: #include teachergraduate#include #include class personin-service_graduateprotected:char name20;int birth_year; publ

17、ic:person(char *na, int year) strcpy(name,na); birth_year=year;int cal_age(int this_year) return this_year-birth_year;class graduate :public personprotected: int grade;char specialty20; public:graduate(char *na, int y, int g, char *spec):person(na,y) grade=g;strcpy(specialty,spec);void display(int t

18、his_year) cout“graduateagegradespecialtyn“; coutsetw(20)namesetw(5)cal_age(this_year); coutsetw(7)gradesetw(17)specialtyendl;class teacher :public personprotected:char title15;char specialty20; public:teacher(char *na, int y, char *ti, char *spec):person(na,y) strcpy(title,ti);strcpy(specialty,spec)

19、;void display(int this_year) cout“teacheragetitlespecialtyn“; coutsetw(20)namesetw(5)cal_age(this_year); coutsetw(14)titlesetw(17)specialtyendl;class in_service_graduate:public teacher, public graduatepublic:in_service_graduate(char *na, int y, char *ti, char *spec1, int g, char *spec2): teacher(na,

20、 y, ti, spec1), graduate(na, y, g, spec2)void display(int this_year) cout“ in_service_graduateagetitlework_specialtygradestudy_specialtyn“; coutsetw(20)namesetw(5)cal_age(this_year)setw(10)title; coutsetw(15)teacher:specialtysetw(7)gradesetw(17)graduate:specialtyendl;void maingraduate gr(“zhang_ling

21、“,1978,2023,“computer“); teacher te(“wang_qiang“, 1976,“tutor“,“electronics“);in_service_graduate sg(“liu_hua“,1975,“lectuer“,“automation“,2023,“computer“); gr.display(2023);coutendl; te.display(2023); coutendl; sg.display(2023);根本要求l 阅读程序,完成in_service_graduate 类中的display函数的程序。l 上机录入、调试上面程序。l 运行程序,观

22、看运行结果是否正确且满足题意要求。分析与思考l 在上面程序中类person 中的数据成员name 和 birth_year 在 in_service_graduate 类中有两个副本,请使用虚基类使它们在in_service_graduate 类中只有一个副本。留意同时修改程序的其他相关局部。4. 源代码1.#include class vehicleprotected:int wheels; double weight;public: vehicle(int x,double y)wheels=x;weight=y;int get_wheels return wheels; double g

23、et_weight return weight; double wheel_loading return weight/wheels; ;class car: public vehicleprivate:int passenger_load;public:car(int x,double y,int z=4):vehicle(x,y)passenger_load=z;/ void initialize(int whls, double wght, int people=4 ); int passengers return passenger_load; ;class truck: public

24、 vehicleprivate:int passenger_load; double payload;public: truck(int x,double y,int z=2,double w=24000.0):vehicle(x,y)passenger_load=z;payload=w;/ void init_truck(int number =2, double max_load =24000.0); double efficiency;int passengers return passenger_load; ;double truck:efficiencyreturn payload/

25、(payload+weight);void mainvehicle bicycle(2,25);cout“the bicycle has “bicycle.get_wheels“ wheels.n“; cout“the bicycle weighs “bicycle.get_weight“ pounds.n“;cout“the bicycle”s wheel loading is “bicycle.wheel_loading“ pounds per tire.nn“;car audi(4,3500.0,5);cout“the audi has “audi.get_wheels“ wheels.

26、n“; cout“the audi weighs “audi.get_weight“ pounds.n“;cout“the audi”s wheel loading is “audi.wheel_loading“ pounds per tire.nn“; truck jief(18,12500.0,2,33675.0);cout“the jief has “jief.get_wheels“ wheels.n“; cout“the jief weighs “jief.get_weight“ pounds.n“;cout“the jief”s efficiency is “100.0*jief.e

27、fficiency“ percent.n“;2.#include #include #include class personprotected:char name20; int birth_year;public:person(char *na, int year) strcpy(name,na); birth_year=year;int cal_age(int this_year) return this_year-birth_year;class graduate :virtual public personprotected:int grade;char specialty20; pu

28、blic:graduate(char *na, int y, int g, char *spec):person(na,y) grade=g;strcpy(specialty,spec);void display(int this_year) cout“graduateagegradespecialtyn“; coutsetw(20)namesetw(5)cal_age(this_year); coutsetw(7)gradesetw(17)specialtyendl;class teacher :virtual public personprotected:char title15;char

29、 specialty20; public:teacher(char *na, int y, char *ti, char *spec):person(na,y) strcpy(title,ti);strcpy(specialty,spec);void display(int this_year) cout“teacheragetitlespecialtyn“; coutsetw(20)namesetw(5)cal_age(this_year); coutsetw(14)titlesetw(17)specialtyendl;class in_service_graduate:public tea

30、cher, public graduatepublic:in_service_graduate(char *na, int y, char *ti, char *spec1, int g, char *spec2): teacher(na, y, ti, spec1), graduate(na, y, g, spec2),person(na,y)void display(int this_year) cout“ in_service_graduateagetitlework_specialtygradestudy_specialtyn“; coutsetw(20)namesetw(5)cal_

31、age(this_year)setw(10)title; coutsetw(15)teacher:specialtysetw(7)gradesetw(17)graduate:specialtyendl;void maingraduate gr(“zhang_ling“,1978,2023,“computer“); teacher te(“wang_qiang“, 1976,“tutor“,“electronics“);in_service_graduate sg(“liu_hua“,1975,“lectuer“,“automation“,2023,“computer“); gr.display

32、(2023);coutendl; te.display(2023); coutendl; sg.display(2023);5. 代码测试1.2.6. 测试过程和运行结果分析1、将 class car: public vehicle 和 class truck: public vehicle 分别改为: class car: private vehicle 和 class truck: private vehicle程序运行无法正常运行了,由于继承访问把握变成私有之后,基类的共有成员在派生类中就会变成私有的了,继承的 函数在主函数中就不能访问了。2、两个基类的virtual 都要添上,否则na

33、me 等还是有二义性。不添virtual 时不需要在初始化列表中添加person(na,y),但是只要添了一个virtual,就得加person(na,y)。7. 思考题解答将 vehicle 中数据成员wheels 和 weight 改为private 性质,如何修改程序以到达一样的输出结果。答:将vehicle 中数据成员wheels 和 weight 改为private 性质后,double truck:efficiencyreturn payload/(payload+weight);中的 weight 就无法被访问了。可以定义一个指向weight 的指针来访问。最简洁的方法-把 we

34、ight 换成 get_weight就万事大吉了。试验报告九 多态性与虚函数1. 试验目的(1) 把握虚函数定义及实现。(2) 把握具有多态性的面对对象程序设计的根本方法。(3) 把握纯虚函数与抽象类的定义、实现及应用。2. 试验设备硬件环境:微型计算机软件环境:操作系统: Windows语言环境: Visual C+3. 试验内容有一个整数链表,现从今链表派生出一个整数集合类,在集合类中增加一个元素个数的数据项。集合类的插入操 作与链表相像,只是不插入重复元素,并且插入后,元素个数的数据成员需增加。集合类的删除操作是在链表删除操 作的根底上对元素个数做减 1 操作。而查找和输出操作是一样的,

35、因此在集合类中不需要重复定义。#include #include / enum bool false,true;struct element /定义链表中的结点构造int val; element *next;class list /定义链表类element *elems; public:list elems=0;list;virtual bool insert(int); /此虚函数在派生类中可重定义virtual bool deletes(int); /此虚函数在派生类中可重定义bool contain(int);void print;class set:public list /将集合类

36、set 定义为链表类list 的派生类int card;public:set card=0; bool insert(int);/重定义此函数bool deletes(int); /重定义此函数;list:list/list 类得析构函数定义,循环释放各元素所占的存储element *tmp=elems;for(element *elem=elems; elem!=0;)tmp=elem; elem=elem-next;delete tmp;bool list:insert(int val)/定义 list 类中插入元素的成员函数element *elem=new element;/为元素安排

37、存储if (elem!=0) elem-val=val;/将元素插入到链表头elem-next=elems;elems=elem; return true;else return false;bool list:deletes(int val)/定义 list 类中删除元素的成员函数if(elems=0) return false;/假设表为空,返回false element *tmp=elems;if(elems-val=val)/假设待删除的元素为表头元素elems=elems-next;delete tmp; return true;elsefor(element *elem=elems

38、; elem-next!=0; elem=elem-next) if(elem-next-val=val)/循环查找待删除元素tmp=elem-next;elem-next=tmp-next; delete tmp;return true;return false;bool list:contain(int val)/判元素 val 在链表中是否存在if(elems=0)return false;if(elems-val=val) return true; elsefor(element *elem=elems; elem-next!=0; elem=elem-next) if(elem-next-val=val)return true;return false;void list:print/输出链表中各元素if(elems=0) return;for(element *elem=elems; elem!=0; elem=elem-next) coutval“;coutendl;bool set:insert(int val)/在 set 类中的insert 的重定义版本if(1)/先推断此元素

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 高考资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁