收藏 分销(赏)

C++面向对象程序设计-期末考试试题.doc

上传人:a199****6536 文档编号:7211520 上传时间:2024-12-28 格式:DOC 页数:10 大小:70KB 下载积分:8 金币
下载 相关 举报
C++面向对象程序设计-期末考试试题.doc_第1页
第1页 / 共10页
C++面向对象程序设计-期末考试试题.doc_第2页
第2页 / 共10页


点击查看更多>>
资源描述
资料内容仅供您学习参考,如有不当或者侵权,请联系改正或者删除。 杭州电子科技大学学生考试卷( A) 卷 考试课程 面向对象程序设计 考试日期 6月 日 成绩 课 程 号 B1002100 教 师 号 任课教师姓名 楼永坚 考生姓名 学号( 8位) 年级 05 专业 050511/2/3 座位号 一、 判断题( 15分) ( 正确打√, 错的打╳) 1. 友元函数用于允许一个函数访问不相关类的私有部分。 2. 构造函数能够被继承。 3. 动态绑定的多态性是经过虚函数实现的。 4. 在c++中, 传引用调用等同于传地址调用。 5. 重载函数必须有不同的参数列表。 6. 能够用delete释放不是用new运算符分配的内存。 7. 类成员的默认访问模式是private。 8. 在类Time中的析构函数能够声明为: void ~Time(int); 9. const对象必须初始化。 10. 在c++中, 只能重载已有的运算符。 1) √ 2) ╳ 3) √ 4) ╳ 5) √ 6) ╳ 7) √ 8) ╳ 9) √ 10) √ 二、 选择题( 20分) 1) c 2) b 3) c 4) b 5) c 6) a 7) c 8) a 9) c 10) b 11. 二 、 选择题( 20分) 1. 关键字 ____________ 说明对象或变量初始化后不会被修改。 a. static b. public c. const d. inline 2. 如果调用带有默认参数的函数时缺少一个参数, 则______________参数就作为这一参数。 a. 第一个 b. 最后一个 c. 中间一个 d. 以上都不是 3. 成员函数可声明为静态的, 条件是它不访问 __________类成员。 a. 静态 b. 常数 c. 非静态 d. 公共 4. 内联函数执行起来比标准函数_______________。 a. 更慢 b. 更快 c. 次数更多 d. 以上都不是 5. 默认参数的值由___________________提供。 a. 该函数 b. 调用程序 c. 上述二者 d. 以上都不是 6. 在 C++ 中, 混合类型表示式_____________。 a. 允许存在 b. 为一错误 c. 从 int 到 float d. 从 float 到 int 7. 表示式 long(intVar) 也可表示为 _______________。 a. intvar = long; b. intVar(long) c. (long)intVar d. 以上都不是 8. 静态数据成员的生存期_________________。 a. 与整个程序相同 b. 不长于类的生存期 c. 取决于创立的对象数 d. 以上都不是 9. 要让一个类中的所有对象具有共同的数据, 请使用__________________。 a. 常数成员变量 b. 私有数据成员 c. 静态数据成员 d. 以上都是 10. 设置虚基类的目的是: a.简化程序 b.消除二义性 c.提高运行效率 d.减少目标代码 三 、 指出下列程序片段中的错误标号, 写出正确语句或解释错在何处。( 20分) ①int index=675; 1) ④*ptr=555; ptr是指向整数常量的指针 ⑧ntptr=&another; ntptr是常量指针, 不能指向别的的变量 2) ①int arrp; 应改为: int *arrp; ③delete arrp; 应改为: delete [ ]arrp; 3) return basedata;// 在border_and_menu中引用basedata时产生二义性, 应使用虚基类 应改为: class border:virtual public window { }; class menu: virtual public window { }; 1) ②const int *ptr=&index; ③int *const ntptr=&index; ④*ptr=555; ⑤*ntptr=666; ⑥int another=8; ⑦ptr=&another; ⑧ntptr=&another; 2) ①int arrp; ②arrp=new int[15]; ③delete arrp; 3) 下面程序为什么会编译错误, 并改正错误( 提出解决办法) 。 class window { protected: int basedata; }; class border: public window { }; class menu: public window { }; class border_and_menu: public border, public menu { public: int show() { return basedata; } 4) 改正下面程序段中的错误, 写出整个正确的程序段 template<T> void print(T *a) { cout<<a<<’\n’;} void main( ) { const int x=0; cout<<y<<’\n’; int y; x=5; int* p p=&y; print(p); return 0; } 四 、 写出下面程序的执行结果: ( 15分) 1) #include <iostream> using namespace std; class A {friend double count(A&); public: A(double t, double r):total(t),rate(r){} private: double total; double rate; }; double count(A& a) { a.total+=a.rate*a.total; return a.total; } int main(void) { A x(80,0.5),y(100,0.2); cout<<count(x)<<','<<count(y)<<'\n'; cout<<count(x)<<'\n'; return 0; } 执行结果: 2) #include<iostream> using namespace std; class Count{ private: static int counter; int obj_id; public: Count(); //constructor static void display_total(); //static function void display(); ~Count(); //destructor }; int Count::counter; //definition of static data member Count::Count() //constructor { counter++; obj_id = counter; } Count::~Count() //destructor { counter--; cout<<"Object number "<<obj_id<<" being destroyed\n"; } void Count::display_total() //static function { cout <<"Number of objects created is = "<<counter<<endl; } void Count::display() { cout << "Object ID is "<<obj_id<<endl; } int main(void) { Count a1; Count::display_total(); Count a2, a3,a4; Count::display_total(); a2.display(); a4.display(); return 0; } 3) #include <iostream > using namespace std; class BASE { char c; public: BASE(char n):c(n){} virtual ~BASE(){cout<<c;} }; class DERIVED:public BASE{ char c; public: DERIVED(char n):BASE(n+1),c(n){} ~DERIVED(){cout<<c;} }; int main(void) { DERIVED('X'); return 0; } 五、 程序填空: ( 10分) #include <iostream> using namespace std; class A { ______( 1) ______ char name[80]; public: A( ____( 2) ______ ) {____( 3) ______ } }; class B_____( 4) _______ { public: B(const char*n)_____( 5) _______{} void PrintName( ) {cout<<”name:”<<name<<endl;}; }; void main( ) { B b1(”Ling Li”); b1.PrintName( ) ; } // 执行结果: name: Ling Li 六、 编程题( 20分) 1.编写程序: 定义抽象基类Shape, 由它派生出五个派生类: Circle( 圆形) 、 Square( 正方形) 、 Rectangle( 长方形) 、 Trapezoid ( 梯形) 和Triangle ( 三角形) , 用虚函数分别计算各种图形的面积, 并求出它们的和。要求用基类指针数组。使它的每一个元素指向一个派生类的对象。 注: 主函数中定义如下对象 Circle circle(12.6); Square square(3.5); Rectangle rectangle(4.5,8.4); Trapezoid trapezoid(2.0,4.5,3.2); Triangle triangle(4.5,8.4); 杭州电子科技大学学生考试卷( A) 答案 考试课程 面向对象程序设计 考试日期 6月 日 成绩 课 程 号 B1002100 教 师 号 任课教师姓名 楼永坚 考生姓名 学号( 8位) 年级 05 专业 050511/2/3 座位号 一、 判断题( 15分) 1) √ 2) ╳ 3) √ 4) ╳ 5) √ 6) ╳ 7) √ 8) ╳ 9) √ 10) √ 二、 选择题( 20分) 1) c 2) b 3) c 4) b 5) c 6) a 7) c 8) a 9) c 10) b 三 、 指出下列程序片段中的错误, 并解释错在何处。( 20分) 1) ④*ptr=555; ptr是指向整数常量的指针 ⑧ntptr=&another; ntptr是常量指针, 不能指向别的的变量 2) ①int arrp; 应改为: int *arrp; ③delete arrp; 应改为: delete [ ]arrp; 3) return basedata;// 在border_and_menu中引用basedata时产生二义性, 应使用虚基类 应改为: class border:virtual public window { }; class menu: virtual public window { }; 4) 整个正确的程序段( 参考) : #include <iostream.h> //加本句 template<typename T> //加typename void print(T *a) { cout<<a<<'\n';} void main( ) { int y=10; //y应先声明后使用, 并给初值 const int x=0; cout<<y<<'\n'; //x=5; x为const, 去掉该句 int* p; p=&y; print(p); // return 0; main返回为void , 去掉该句 } 四 、 写出下面程序的执行结果: ( 15分) 1) 2) 3) XY 五、 程序填空: ( 10分) ( 1) protected:或public ( 2) const char *n ( 3) strcpy(name,n); ( 4) : public A或: protected A ( 5) :A(n) 六、 编程题( 20分) 1. #include <iostream> using namespace std; class Shape {public: virtual double area() const =0; }; class Circle:public Shape {public: Circle(double r):radius(r){} virtual double area() const {return 3.14159*radius*radius;}; protected: double radius; }; class Square:public Shape {public: Square(double s):side(s){} virtual double area() const {return side*side;} protected: double side; }; class Rectangle:public Shape {public: Rectangle(double w,double h):width(w),height(h){} virtual double area() const {return width*height;} protected: double width,height; }; class Trapezoid:public Shape {public: Trapezoid(double t,double b,double h):top(t),bottom(t),height(h){} virtual double area() const {return 0.5*(top+bottom)*height;} protected: double top,bottom,height; }; class Triangle:public Shape {public: Triangle(double w,double h):width(w),height(h){} virtual double area() const {return 0.5*width*height;} protected: double width,height; }; int main() { Circle circle(12.6); Square square(3.5); Rectangle rectangle(4.5,8.4); Trapezoid trapezoid(2.0,4.5,3.2); Triangle triangle(4.5,8.4); Shape *pt[5]={&circle,&square,&rectangle,&trapezoid,&triangle}; double areas=0.0; for(int i=0;i<5;i++) {areas=areas+pt[i]->area();} cout<<"totol of all areas="<<areas<<endl; return 0; }
展开阅读全文

开通  VIP会员、SVIP会员  优惠大
下载10份以上建议开通VIP会员
下载20份以上建议开通SVIP会员


开通VIP      成为共赢上传

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        抽奖活动

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:0574-28810668  投诉电话:18658249818

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :微信公众号    抖音    微博    LOFTER 

客服