- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《面向对象程序设计》第二次考试试题2015级1123精选
《面向对象程序设计》第二次上机测试题目及要求
一、考核目标
(一)数组、指针与字符串
1.掌握数组、字符串数据的定义和使用;掌握标准C++库中string的使用;
2.掌握指针的使用方法;掌握动态内存分配实现动态数组,并体会指针在其中的作用。
(二)继承与派生
1.理解继承、派生的基本概念及意义。
2.掌握派生类定义及派生类对象实例化。
3.掌握类型兼容规则、派生类成员的标识与访问。
4.虚基类解决二义性问题。
二、考试要求
1.不允许携带U盘和教材等进入考场。
2.考试过程中保持安静,独立按要求完成考试题目。
3.考试结束后,请坐在座位上,等待监考老师确认你的考题之后方可离开。
三、考试内容
在桌面上新建一个文件夹,以“学号+姓名”形式命名,如三。
该文件夹中应该包含两个子文件夹(文件夹名分别为:第一题 第二题),分别存放两道题的相关文件以及测试结果等。
第一大题: 所有同学都完成
1.已知Point类的声明如下:
#include iostream
using namespace std;
//Point 类的声明
class Point
{
public: //外部接口
Point(); //构造函数
Point(int xx, int yy) ;//构造函数
Point(Point p); //拷贝构造函数
int GetX() const {return X;}
int GetY() const {return Y;}
void move(int newx,int newy) {x=newx; y=newy;}
~Point(){}
private: //私有数据
int X,Y;
};
class ArrayofPoints
{
Point element(int index){
assert(index=0 indexsize);// size为数组大小
return points[index];
}
};
//计算任意两点之间的街区距离
int L1Distance (int x1,int y1,int x2,int y2){
return(abs(x1-x2)+abs(y1-y2));
}
请给出Point类的构造函数,并参照下图创建动态数组类ArrayofPoints,实现主函数。请自行补充需要的头文件。
//主程序
int main()
{ int count;
cout”Please enter the count of Points”endl;
cincount;
ArrayofPoints ArrPoints(count);
ArrPoints.element(0).move(5,10);
ArrPoints.element(1).move(15,20);
cout”The distance is” endl; coutL1Distance(ArrPoints.element(0).GetX(),ArrPoints.element(0).GetY(),ArrPoints.element(1).GetX(),ArrPoints.element(1).GetY()endl;
}
#includeiostream
#includemath.h
#includeassert.h
using namespace std;
class Point
{
public: //外部接口
Point(); //构造函数
Point(int xx, int yy) ;//构造函数
Point(Point p); //拷贝构造函数
int GetX() const {return x;}
int GetY() const {return y;}
void move(int newx,int newy) {x=newx; y=newy;}
~Point(){}
private: //私有数据
int x,y;
};
Point::Point(){
x = 0; y = 0;
}
Point::Point(int xx, int yy){
this-x = xx;
this-y = yy;
}
class ArrayofPoints
{
public:
ArrayofPoints(int size){
this-size = size;
}
~ArrayofPoints(){
}
Point element(int index){
assert(index=0 indexsize);// size为数组大小
Point points[index];
return points[
文档评论(0)