请使用VC6或使用【答题】菜单打开考生文件夹pmj1下的工程proj1,此工程中包含了类Pets(“宠物”)和主函数main的定义。程序中位于每个“//ERROR****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Na

admin2015-06-27  25

问题 请使用VC6或使用【答题】菜单打开考生文件夹pmj1下的工程proj1,此工程中包含了类Pets(“宠物”)和主函数main的定义。程序中位于每个“//ERROR****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为:
Name:sonnyType:dog
Name:johnType:dog
Name:DannyType:cat
Name:johnType:dog
注意:只修改每个“//ERROR****found****”下的那一行,不要改动程序中的其他内容。
#include
usingnamespacestd;
enumPetstype{dog,cat,bird,fish};
classPets{
private:
char*name;
Pets_typetype;
public:
Pets(constchar*name="sonny",
Pets_typetype=dog);
Pets&operator=(constPets&s);
~Pets();
voidshow()const;
};
Pets::Pets(constchar*name,Pets
typetype)
//构造函数
{
this->name=newchar[strlen
(name)+1];
strcpy(this->name,name);
//ERROR*********found*********
type=type;
}
Pets::~Pets()//析构函数,释放name
所指向的字符串
{
//ERROR*********found*********
name=’/0’;
}
Pets&Pets::operator=(constPets&s)
{
if(&s=this)//确保不要向自身赋值
return*this;
delete[]name,
name=newchar[strlen(s.name)+1];
//ERROR*********found*********
strcpy(this->name,name);
type=s.type;
return*this;
}
voidPets::show()const
{
cout<<"Name:"<switch(type)
{
casedog:cout<<"dog";break;
casecat:cout<<"cat";break;
casebird:cout<<"bird";break;
casefish:cout<<"fish";break;
}
cout<}
intmain()
{
Petsmypet1,mypet2("john",dog);
Petsyoupet("Danny",cat);
mypet1.show();
mypet2.show();
youpet.show();
youpet=mypet2;
youpet.show();
return0;
}

选项

答案(1)this->type=type; (2)delete[]name; (3)strcpy(this->name,s.name);

解析 (1)主要考查考生对构造函数的掌握情况,因为形参名和类的私有成员名称都是type,为了避免混淆,所以规定类的私有成员使用this指针调用,即:this->type=type;。
(2)主要考查考生对析构函数的掌握情况,题目中要求,释放name所指向的字符串。要释放name指针用delete语句,即delete[]name;。
(3)主要考查考生对strcpy函数的掌握情况,strcpy函数的形参为两个字符串,而name为指向字符串的指针,因此使用语句:strcpy(this->name,s.name);。
转载请注明原文地址:https://kaotiyun.com/show/URNp777K
0

最新回复(0)