欢迎来到天天文库
浏览记录
ID:16458047
大小:72.00 KB
页数:6页
时间:2018-08-10
《2013面向对象程序设计期末考试试卷a》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、专业班级学号姓名温馨提示:端正考风、严肃考纪、诚信参加考试凡是代考、使用通讯设备作弊、二次作弊,一经发现开除学籍。东华理工大学2013—2014学年第一学期考试试卷(A)面向对象程序设计课程闭/开卷课程类别:考试/考查题号一二三四五六七八九总分分数评卷人一、程序填空题(20分,每空2分)1、以下程序主要实现了动态申请存储空间,使用完成后能够释放申请的空间。根据注释信息,请在________上填入正确内容。#includeusingnamespacestd;intmain(){int*s;s=newint(60)__;//为s动态申请一个int类型的空间并存入数值60if(
2、s==NULL)exit(0);cout<<*s<3、3、以下程序主要利用类的友元函数实现了运算符的重载,根据注释信息,请在________上填入正确内容。#includeusingnamespacestd;classComplex{//复数类定义public://外部接口Complex(doubler=0.0,doublei=0.0):real(r),imag(i){}//构造函数friendComplexoperator+(constComplex&c1,constComplex&c2);//运算符+重载private://私有数据成员doublereal;//复数实部doubleimag;//复数虚部};Complex4、operator+(constComplex&c1,constComplex&c2){complextemp___;//定义临时变量temp.real=c1.real+c2.real;temp.imag=c1.imag+c2.imag__;returntemp;}4、以下程序主要实现类的继承,根据注释信息,请在________上填入正确内容。#includeusingnamespacestd;classPoint{//基类Point点类的定义public:Point(floatx1,floaty1)专用考试纸请勿浪费卷第6页共6页专业班级学号姓名温馨提示:端正考风、严肃考5、纪、诚信参加考试凡是代考、使用通讯设备作弊、二次作弊,一经发现开除学籍。{x=x1;y=y1;}private:floatx,y;//定义坐标点};classRectangle:publicPoint__{//派生类Rectangle为矩形类,公有继承Point类public:Rectangle(floatc,floatd,floatw,floath):Point(c,d)_//形参c,d用于初始化基类的数据成员x,y{width=w;heigh=h;}private:floatwidth,heigh;//定义矩形的高、宽};5、在下面程序的横线处填上适当的语句,使该程序执行结果为10#in6、cludeclassMyClass{public:MyClass(inta){x=a;}intGETNUM()______//定义函数{returnx__;//取x值}private:intx;};intmain(){MyClassmy(10);cout<usingnamespacestd;classP7、oint{private:intx,y=20;//此行有错intx,y;public:init(inta,intb)//构造函数,此行有错Point(inta,intb);{x=a;y=b;}voidshow(){cout<<"x="<
3、3、以下程序主要利用类的友元函数实现了运算符的重载,根据注释信息,请在________上填入正确内容。#includeusingnamespacestd;classComplex{//复数类定义public://外部接口Complex(doubler=0.0,doublei=0.0):real(r),imag(i){}//构造函数friendComplexoperator+(constComplex&c1,constComplex&c2);//运算符+重载private://私有数据成员doublereal;//复数实部doubleimag;//复数虚部};Complex
4、operator+(constComplex&c1,constComplex&c2){complextemp___;//定义临时变量temp.real=c1.real+c2.real;temp.imag=c1.imag+c2.imag__;returntemp;}4、以下程序主要实现类的继承,根据注释信息,请在________上填入正确内容。#includeusingnamespacestd;classPoint{//基类Point点类的定义public:Point(floatx1,floaty1)专用考试纸请勿浪费卷第6页共6页专业班级学号姓名温馨提示:端正考风、严肃考
5、纪、诚信参加考试凡是代考、使用通讯设备作弊、二次作弊,一经发现开除学籍。{x=x1;y=y1;}private:floatx,y;//定义坐标点};classRectangle:publicPoint__{//派生类Rectangle为矩形类,公有继承Point类public:Rectangle(floatc,floatd,floatw,floath):Point(c,d)_//形参c,d用于初始化基类的数据成员x,y{width=w;heigh=h;}private:floatwidth,heigh;//定义矩形的高、宽};5、在下面程序的横线处填上适当的语句,使该程序执行结果为10#in
6、cludeclassMyClass{public:MyClass(inta){x=a;}intGETNUM()______//定义函数{returnx__;//取x值}private:intx;};intmain(){MyClassmy(10);cout<usingnamespacestd;classP
7、oint{private:intx,y=20;//此行有错intx,y;public:init(inta,intb)//构造函数,此行有错Point(inta,intb);{x=a;y=b;}voidshow(){cout<<"x="<
此文档下载收益归作者所有