使用VC6打开考生文件夹下的源程序文件modi3.cpp。其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整。 (1)在类TestClass中定义name为字符串类型,age为整型,请在注释//********1********之后添加语句。 (

admin2016-10-28  27

问题 使用VC6打开考生文件夹下的源程序文件modi3.cpp。其中定义的类并不完整,按要求完成下列操作,将类的定义补充完整。
(1)在类TestClass中定义name为字符串类型,age为整型,请在注释//********1********之后添加语句。
(2)设置类TestClass0的基类为TestClass类的定义,请在注释//********2********后添加语句。
(3.)在类TestClass的派生类TestClass0的公有成员
中定义析构函数TestClass0,请在//********3********后添加。
(4)设置类TestClass1的基类为TestClass类的定义,请在//********4********后实现。
本程序输出如下结果:
TestClass class constructor
TestClass0 class constructor
TestClass on class constructor
11estClass1 class constructor
TestClass1 class constructor
TestClass class constructor
TestClass0 class constructor
11estClass class constructor
注意:增加代码,或者修改代码的位置已经用符号表示
出来。请不要修改其他的程序代码。
#include<iostream.h>
class TeStClass
{
//********1********
public:
TestClass()(cout<<"TestClass class constructor"<<endl;}
~TestClass()(cout<<"TestClass class constructor"<<endl;}
};
//********2********
{
char*departmert;
int level;
public:
TestClass0()
(cout<<"TestClass0 classconstructor"<<endl;}
//********3********
(cout<<"TestClass0classconstructor"<<endl;}
};
//********4********
{
char*major;
float salary;
public:
TestClass1() {cout<<"TestClasSl class constructor"<<endl;}
~TestClass1(){cout<<
"TestClass1 class constructor"
<<end1;}
};
void main()
{
TestClass0 s1;
TestClass1 t1;
}

选项

答案(1)添加语句:char*name;int]age; (2)添加语句:class]TestClass0:public]TestClass (3)添加语句:~TestClass0() (4)添加语句:class]TestClass1:public]TestClass

解析 (1)题目1要求“Testflass中定义name为字符串类型,age为整型”。根据题目要求,在程序TestClass类中定义变量name和age,即“char*name;int]age;”。
(2)题目2要求“设置类TestClass()的基类为TestClaSs类的定义”。在C++中,从已有的类产生一个新的子类,称为类的派生。声明派生类的一般形式为:class派生类名:[继承方式]基类名。根据声明派生类的一般形式,这里补全“class TestClass0:public TestClass”。
(3)题目3要求“在类TestClass的派生类TestClass0的公有成员中定义析构函数TestClass0”。析构函数也是一个特殊的成员函数,它的作用与构造函数相反,它的名字是类名的前面加一个“~”符号。题目中要求的类名字为“TestClass0”即这里补全“~TestClass0()”。
(4)题目4要求“设置类TestClass1的基类为TestClass1类的定义”同(2)在第4个标识下补充“class TestClass1:public TestClass”。
转载请注明原文地址:https://kaotiyun.com/show/h7Np777K
0

最新回复(0)