天津理工大学C++实验三
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
天津理工大学
计算机科学与技术学院
实验报告
至学年第学期
课程名称C++程序设计
学号学生姓名年级
专业教学班号实验地点
实验时间年月日第节至第节主讲教师
辅导教师
实验
实验名称派生与继承
(三)
C++visual
软件环境
无
硬件环境
实验目的
(1)理解继承的含义,掌握派生类的定义方法和实现;
(2)理解公有继承下基类成员对派生类成员和派生类对象的可见性,能正确地访问继承层次中的各种类成员;
(3)理解保护成员在继承中的作用,能够在适当的时候选择使用保护成员以便派生类成员可以访问基类的部分非公开的成员;
计算机科学与技术学院
int y1=Gety( ); // D
x1 += x_offset; y1 += y_offset;
Setxy(x1, y1); // E }
void ShowCircle( )
{
ShowPoint( ); // F
cout<<" Radius: "< cout<<"Area: "< }; void main( ) { Circle c(1, 1, 1); c.ShowCircle( ); c.Move(1, 2); c.ShowCircle( ); c.Setxy(4, 5); //重新置圆心坐标 c.Setr(2); //重新置半径值 c.ShowCircle( ); } {protected: int r; public: Radius(int ra=0){ r = ra; } void Setr(int ra){ r = ra; } int Getr( ){ return r; } }; class Circle : public Point, public Radius { public: Circle(int x, int y, int ra) : Point(x, y), Radius(ra)//D { } double Area( ) { return PI*r*r; } //直接访问基类的保护成员 void Move(int x_offset, int y_offset) { x += x_offset; y += y_offset; } void ShowCircle( ) { ShowPoint( ); cout<<"Radius: "< cout<<"Area: "< } }; void main( ) { Circle c(1, 1, 1); c.ShowCircle( ); c.Move(1, 2); c.ShowCircle( ); c.Setxy(4, 5); c.Setr(2); c.ShowCircle( ); } (1)记录程序的运行结果 Point:(1,1) Radius: 1 Area: 3.14159 Point:(2,3) Radius: 1 Area: 3.14159 Point:(4,5) Radius: 2 Area: 12.5664 (2)为什么可以直接使用x,y, x和y是Point类的保护(protected)成员(3)如果x,y在基类中是私有的行吗?不行 #include class Base1 {protected: int data1; public: Base1(int a=0) { data1 = a; cout<<"Base Constructor1\n";} ~Base1( ) { cout<<"Base Destructor1\n"; }}; class Base2 {protected: int data2; public:Base2(int a=0) { data2 = a; cout<<"Base Constructor2\n"; } ~Base2( ) { cout<<"Base Destructor2\n"; } }; class Derived: public Base1, public Base2 { int d; public: Derived(int x, int y, int z):Base1(x), Base2(y) { d=z; cout<<"Derived Constructor\n"; } ~Derived( ) { cout<<"Derived Destructor\n"; } void Show( ) { cout< void main( ) { Derived c(1, 2, 3); c.Show( ); } (1)记录程序的运行结果 Base Constructor1 Base Constructor2 Derived Constructor 1,2,3 Derived Destructor Base Destructor2 Base Destructor1