



版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、姓名:_ 班级:_ 学号:_-密-封 -线- 标签:标题考试时间:120分钟 考试总分:100分题号一二三四五总分分数遵守考场纪律,维护知识尊严,杜绝违纪行为,确保考试结果公正。1、阅读以下说明和c代码,将应填入(n)处的字句写在对应栏内。说明在一个简化的绘图程序中,支持的图形种类有点(point)和圆(ckcle),在设计过程中采用面向对象思想,认为所有的点和圆都是一种图形(shape),并定义了类型shape_t、point_t和circle_t分别表示基本图形、点和圆,并且点和圆具有基本图形的所有特征。c代码typedef enumpoint,circle)shape_type; /*程
2、序中的两种图形:点和圆*/typedef struct /*基本的图形类型*/shape_type type; /*图形种类标识:点或者圆*/void(*destroy)( ); /*销毁图形操作的函数指针*/void(*draw)( ); /*绘制图形操作的函数指针*/shape_t;typedef struct(shape_t common;int x;int y;)point_t;/*定义点类型,x、y为点坐标*/void destroypoint(point_t* this) free(this);printf(“point destoryed!/n”);/*销毁点对象*/void d
3、rawpoint(point_t* this) printf(“p(%d,%d)”,this-x,this-y);/*绘制点对象*/shape_t* createpoint(va_list* ap)/*创建点对象,并设置其属性*/point_t* p_point;if(p_point=(point_t*)malloc(sizeof(point_t)=null)return null;p_point-common.type=point;p_point-common.destroy=destroypoint;p_point-common.draw=drawpoint;p_point-x=va_ar
4、g(*ap,int); /*设置点的横坐标*/p_point-y=va_arg(*ap,int); /*设置点的纵坐标*/return(shape_t*)p_point; /*返回点对象指针*/typedef struct/*定义圆类型*/shape_t common;point_t*center; /*圆心点*/int radius; /*圆半径*/circle_t;void destroycircle(circle_t* this)free(1);free(this);printf(“circle destoryed!/n”);void drawcircle(circle_t* this)
5、printf”c”;(2).draw(this-center); /*绘制圆心*/printf(“.%d)”,this-radius);shape_t* createcircle(va_list* ap) /*创建一个圆,并设置其属性*/circle_t* p_circle;if(p_circle=(circle_t*)malloc(sizeof(circle_t)=null)return null;p_circle-common.type=circle;p_circle-common.destroy=destroycircle;p_circle-common.draw=drawcircle;
6、(3)=createpoint(ap); /*设置圆心*/p_circle-radius=va_arg(*ap,int); /*设置圆半径*/return p_circle;shape_t* createshape(shape_type st,)/*创建某一种具体的图形*/va_list ap; /*可变参数列表*/shape_t* p_shape=null;(4)(ap,st);if(st=point)p_shape=createpoint(ap); /*创建点对象*/if(st=circle) p_shape=createcircle(ap); /*创建圆对象*/va_end(ap);re
7、turn p_shape;int main( )int i; /*循环控制变量,用于循环计数*/shape_t* shapes2; /*图形指针数组,存储图形的地址*/shapes0=createshape(point,2,3);/*横坐标为2,纵坐标为3*/shapes1=createshape(circle,20,40,10);/*圆心坐标为(20,40),半径为10*/for(i=0;i2;i+)(shapesi-draw(shapesi);printf(“/n”);/*绘制数组中图形*/for(i=1;i=0;i-) shapesi-destroy(shapesi);/*销毁数组中图形
8、*/return 0;运行结果p(2,3)(5)circle destoryed!point destoryed!( )2、阅读以下说明和c代码,将应填入(n)处的字句写在对应栏内。说明在一个简化的绘图程序中,支持的图形种类有点(point)和圆(ckcle),在设计过程中采用面向对象思想,认为所有的点和圆都是一种图形(shape),并定义了类型shape_t、point_t和circle_t分别表示基本图形、点和圆,并且点和圆具有基本图形的所有特征。c代码typedef enumpoint,circle)shape_type; /*程序中的两种图形:点和圆*/typedef struct /
9、*基本的图形类型*/shape_type type; /*图形种类标识:点或者圆*/void(*destroy)( ); /*销毁图形操作的函数指针*/void(*draw)( ); /*绘制图形操作的函数指针*/shape_t;typedef struct(shape_t common;int x;int y;)point_t;/*定义点类型,x、y为点坐标*/void destroypoint(point_t* this) free(this);printf(“point destoryed!/n”);/*销毁点对象*/void drawpoint(point_t* this) print
10、f(“p(%d,%d)”,this-x,this-y);/*绘制点对象*/shape_t* createpoint(va_list* ap)/*创建点对象,并设置其属性*/point_t* p_point;if(p_point=(point_t*)malloc(sizeof(point_t)=null)return null;p_point-common.type=point;p_point-common.destroy=destroypoint;p_point-common.draw=drawpoint;p_point-x=va_arg(*ap,int); /*设置点的横坐标*/p_poin
11、t-y=va_arg(*ap,int); /*设置点的纵坐标*/return(shape_t*)p_point; /*返回点对象指针*/typedef struct/*定义圆类型*/shape_t common;point_t*center; /*圆心点*/int radius; /*圆半径*/circle_t;void destroycircle(circle_t* this)free(1);free(this);printf(“circle destoryed!/n”);void drawcircle(circle_t* this)printf”c”;(2).draw(this-cente
12、r); /*绘制圆心*/printf(“.%d)”,this-radius);shape_t* createcircle(va_list* ap) /*创建一个圆,并设置其属性*/circle_t* p_circle;if(p_circle=(circle_t*)malloc(sizeof(circle_t)=null)return null;p_circle-common.type=circle;p_circle-common.destroy=destroycircle;p_circle-common.draw=drawcircle;(3)=createpoint(ap); /*设置圆心*/
13、p_circle-radius=va_arg(*ap,int); /*设置圆半径*/return p_circle;shape_t* createshape(shape_type st,)/*创建某一种具体的图形*/va_list ap; /*可变参数列表*/shape_t* p_shape=null;(4)(ap,st);if(st=point)p_shape=createpoint(ap); /*创建点对象*/if(st=circle) p_shape=createcircle(ap); /*创建圆对象*/va_end(ap);return p_shape;int main( )int i
14、; /*循环控制变量,用于循环计数*/shape_t* shapes2; /*图形指针数组,存储图形的地址*/shapes0=createshape(point,2,3);/*横坐标为2,纵坐标为3*/shapes1=createshape(circle,20,40,10);/*圆心坐标为(20,40),半径为10*/for(i=0;i2;i+)(shapesi-draw(shapesi);printf(“/n”);/*绘制数组中图形*/for(i=1;i=0;i-) shapesi-destroy(shapesi);/*销毁数组中图形*/return 0;运行结果p(2,3)(5)circl
15、e destoryed!point destoryed!( )3、阅读以下说明和c代码,将应填入(n)处的字句写在对应栏内。说明在一个简化的绘图程序中,支持的图形种类有点(point)和圆(ckcle),在设计过程中采用面向对象思想,认为所有的点和圆都是一种图形(shape),并定义了类型shape_t、point_t和circle_t分别表示基本图形、点和圆,并且点和圆具有基本图形的所有特征。c代码typedef enumpoint,circle)shape_type; /*程序中的两种图形:点和圆*/typedef struct /*基本的图形类型*/shape_type type; /*
16、图形种类标识:点或者圆*/void(*destroy)( ); /*销毁图形操作的函数指针*/void(*draw)( ); /*绘制图形操作的函数指针*/shape_t;typedef struct(shape_t common;int x;int y;)point_t;/*定义点类型,x、y为点坐标*/void destroypoint(point_t* this) free(this);printf(“point destoryed!/n”);/*销毁点对象*/void drawpoint(point_t* this) printf(“p(%d,%d)”,this-x,this-y);/
17、*绘制点对象*/shape_t* createpoint(va_list* ap)/*创建点对象,并设置其属性*/point_t* p_point;if(p_point=(point_t*)malloc(sizeof(point_t)=null)return null;p_point-common.type=point;p_point-common.destroy=destroypoint;p_point-common.draw=drawpoint;p_point-x=va_arg(*ap,int); /*设置点的横坐标*/p_point-y=va_arg(*ap,int); /*设置点的纵坐
18、标*/return(shape_t*)p_point; /*返回点对象指针*/typedef struct/*定义圆类型*/shape_t common;point_t*center; /*圆心点*/int radius; /*圆半径*/circle_t;void destroycircle(circle_t* this)free(1);free(this);printf(“circle destoryed!/n”);void drawcircle(circle_t* this)printf”c”;(2).draw(this-center); /*绘制圆心*/printf(“.%d)”,thi
19、s-radius);shape_t* createcircle(va_list* ap) /*创建一个圆,并设置其属性*/circle_t* p_circle;if(p_circle=(circle_t*)malloc(sizeof(circle_t)=null)return null;p_circle-common.type=circle;p_circle-common.destroy=destroycircle;p_circle-common.draw=drawcircle;(3)=createpoint(ap); /*设置圆心*/p_circle-radius=va_arg(*ap,in
20、t); /*设置圆半径*/return p_circle;shape_t* createshape(shape_type st,)/*创建某一种具体的图形*/va_list ap; /*可变参数列表*/shape_t* p_shape=null;(4)(ap,st);if(st=point)p_shape=createpoint(ap); /*创建点对象*/if(st=circle) p_shape=createcircle(ap); /*创建圆对象*/va_end(ap);return p_shape;int main( )int i; /*循环控制变量,用于循环计数*/shape_t* s
21、hapes2; /*图形指针数组,存储图形的地址*/shapes0=createshape(point,2,3);/*横坐标为2,纵坐标为3*/shapes1=createshape(circle,20,40,10);/*圆心坐标为(20,40),半径为10*/for(i=0;i2;i+)(shapesi-draw(shapesi);printf(“/n”);/*绘制数组中图形*/for(i=1;i=0;i-) shapesi-destroy(shapesi);/*销毁数组中图形*/return 0;运行结果p(2,3)(5)circle destoryed!point destoryed!(
22、 )4、阅读以下说明和c代码,将应填入(n)处的字句写在对应栏内。说明在一个简化的绘图程序中,支持的图形种类有点(point)和圆(ckcle),在设计过程中采用面向对象思想,认为所有的点和圆都是一种图形(shape),并定义了类型shape_t、point_t和circle_t分别表示基本图形、点和圆,并且点和圆具有基本图形的所有特征。c代码typedef enumpoint,circle)shape_type; /*程序中的两种图形:点和圆*/typedef struct /*基本的图形类型*/shape_type type; /*图形种类标识:点或者圆*/void(*destroy)(
23、); /*销毁图形操作的函数指针*/void(*draw)( ); /*绘制图形操作的函数指针*/shape_t;typedef struct(shape_t common;int x;int y;)point_t;/*定义点类型,x、y为点坐标*/void destroypoint(point_t* this) free(this);printf(“point destoryed!/n”);/*销毁点对象*/void drawpoint(point_t* this) printf(“p(%d,%d)”,this-x,this-y);/*绘制点对象*/shape_t* createpoint(
24、va_list* ap)/*创建点对象,并设置其属性*/point_t* p_point;if(p_point=(point_t*)malloc(sizeof(point_t)=null)return null;p_point-common.type=point;p_point-common.destroy=destroypoint;p_point-common.draw=drawpoint;p_point-x=va_arg(*ap,int); /*设置点的横坐标*/p_point-y=va_arg(*ap,int); /*设置点的纵坐标*/return(shape_t*)p_point; /
25、*返回点对象指针*/typedef struct/*定义圆类型*/shape_t common;point_t*center; /*圆心点*/int radius; /*圆半径*/circle_t;void destroycircle(circle_t* this)free(1);free(this);printf(“circle destoryed!/n”);void drawcircle(circle_t* this)printf”c”;(2).draw(this-center); /*绘制圆心*/printf(“.%d)”,this-radius);shape_t* createcirc
26、le(va_list* ap) /*创建一个圆,并设置其属性*/circle_t* p_circle;if(p_circle=(circle_t*)malloc(sizeof(circle_t)=null)return null;p_circle-common.type=circle;p_circle-common.destroy=destroycircle;p_circle-common.draw=drawcircle;(3)=createpoint(ap); /*设置圆心*/p_circle-radius=va_arg(*ap,int); /*设置圆半径*/return p_circle;
27、shape_t* createshape(shape_type st,)/*创建某一种具体的图形*/va_list ap; /*可变参数列表*/shape_t* p_shape=null;(4)(ap,st);if(st=point)p_shape=createpoint(ap); /*创建点对象*/if(st=circle) p_shape=createcircle(ap); /*创建圆对象*/va_end(ap);return p_shape;int main( )int i; /*循环控制变量,用于循环计数*/shape_t* shapes2; /*图形指针数组,存储图形的地址*/sha
28、pes0=createshape(point,2,3);/*横坐标为2,纵坐标为3*/shapes1=createshape(circle,20,40,10);/*圆心坐标为(20,40),半径为10*/for(i=0;i2;i+)(shapesi-draw(shapesi);printf(“/n”);/*绘制数组中图形*/for(i=1;i=0;i-) shapesi-destroy(shapesi);/*销毁数组中图形*/return 0;运行结果p(2,3)(5)circle destoryed!point destoryed!( )5、阅读以下说明和c代码,将应填入(n)处的字句写在对
29、应栏内。说明在一个简化的绘图程序中,支持的图形种类有点(point)和圆(ckcle),在设计过程中采用面向对象思想,认为所有的点和圆都是一种图形(shape),并定义了类型shape_t、point_t和circle_t分别表示基本图形、点和圆,并且点和圆具有基本图形的所有特征。c代码typedef enumpoint,circle)shape_type; /*程序中的两种图形:点和圆*/typedef struct /*基本的图形类型*/shape_type type; /*图形种类标识:点或者圆*/void(*destroy)( ); /*销毁图形操作的函数指针*/void(*draw)
30、( ); /*绘制图形操作的函数指针*/shape_t;typedef struct(shape_t common;int x;int y;)point_t;/*定义点类型,x、y为点坐标*/void destroypoint(point_t* this) free(this);printf(“point destoryed!/n”);/*销毁点对象*/void drawpoint(point_t* this) printf(“p(%d,%d)”,this-x,this-y);/*绘制点对象*/shape_t* createpoint(va_list* ap)/*创建点对象,并设置其属性*/p
31、oint_t* p_point;if(p_point=(point_t*)malloc(sizeof(point_t)=null)return null;p_point-common.type=point;p_point-common.destroy=destroypoint;p_point-common.draw=drawpoint;p_point-x=va_arg(*ap,int); /*设置点的横坐标*/p_point-y=va_arg(*ap,int); /*设置点的纵坐标*/return(shape_t*)p_point; /*返回点对象指针*/typedef struct/*定义圆类型*/shape_t common;point_t*center; /*圆心点*/int radius; /*圆半径*/circle_t;void destroycircle(circle_t* this)free(1);fr
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
评论
0/150
提交评论