首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
请打开考生文件夹下的解决方案文件proj1,此工程中包含了类Pets(“宠物”)和主函数main的定义。程序中位于每个“//ERROR ****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:sonny
请打开考生文件夹下的解决方案文件proj1,此工程中包含了类Pets(“宠物”)和主函数main的定义。程序中位于每个“//ERROR ****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为: Name:sonny
admin
2020-04-07
19
问题
请打开考生文件夹下的解决方案文件proj1,此工程中包含了类Pets(“宠物”)和主函数main的定义。程序中位于每个“//ERROR ****found****”之后的一行语句有错误,请加以改正。改正后程序的输出结果应为:
Name:sonny Type:dog
Name:John Type:dog
Name:Danny Type:cat
Name:John Type:dog
注意:只修改每个“//ERROR ****found****”下的那一行,不要改动程序中的其他内容。
#include<iostream>
using namespace std;
enum Pets_type{dog,cat,bird,fish};
class Pets{
private:
char*name;
Pets_type type;
public:
Pets ( const char * name="sonny",Pets_type type=dog);
Pets& operator=(const Pets&s);
~Pets();
void show()const;
};
Pets::Pets(const char * name,Pets_type type)
//构造函数
{
this一>name = new char[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=new char[strlen(s.name)+1];
//ERROR ******* found *******
strcpy(this一>name,name);
type=s.type;
return*this;
}
void Pets::show()const
{
cout<<"Name: "<<name<<"Type:";
switch(type)
{
case dog:cout<<"dog";break;
case cat:cout<<"cat";break;
case bird:cout<<"bird";break;
case fish:cout<<"fish";break;
}
cout<<endl;
}
int main()
{
Pets mypet1,mypet2("John",dog);
Pets youpet("Danny",cat);
mypet1.show();
mypet2.show();
youpet.show();
youpet=mypet2;
youpet.show();
return 0;
}
选项
答案
(1)this一>type=type; (2)delete[]name; (3)strcpy(t.his一>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/aw8p777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
要建立文件流并打开当前目录下的文件file.dat用于输入,下列语句中错误的是
下面关于类概念的描述中()是错误的。
在C++中用来实现运行时多态性的是______。
下面程序输出的结果是()。#include<iostream>usingnamespacestd;intfuc(char*x);intmain(){cout<<fuc("hello")<<
程序设计语言的工程特性之一为()。
从工程管理的角度来看,软件设计分两步来完成。首先是概要设计,然后是【】。
在面向对象的程序设计中,用来请求对象执行某一处理或回答某些信息的要求称为【】。
下列程序输出的结果是()。#include<stdio.h>sub1(chara,charb){charc;c=a;a=b;b=c:}sub2(char*a,charb){charc;c=*a;”a=b:b=c
下列语句的作用是计算正整数n的各位数字之和,例如:n=123,sum=1+2+3。请将下列语句补充完整。Do{Sum+=【7】:n=n/10;)while(n!=0)
设栈的存储空间为S(1:40),初始状态为bottom=0,top=0,现经过一系列入栈与出栈运算后,top=20,则当前栈中有【2】个元素。
随机试题
关于诉讼代理人的代理权消灭,下列说法正确的是:()
了解项目情况及研究工作任务,分析项目相关人员,编制项目工作计划,这是项目经理正式开始工作后经过()的步骤。
对存货发出采用后进先出法进行计价时,可使期末存货价值接近近期的存货成本。()
下列诗句中,诗人表达的情感与其他三项不同的是:
BenMickle,MattEdwards,andKshipraBhawalkarlookedasthoughtheyhadjustemergedfromaminorautowreck.ThemembersofD
asfastasoutscoringthemlessandlessconcentrateonA.hestumbles【T13】______B.whowerereadingalmostthreetimes【T14】_
A、 B、 C、 D、 C
Ifyou’relikemostpeople,you’ve【B1】______fakelisteningmanytimes.Yougotohistoryclass,sitinthethirdrow,andlooks
AstheU.S.findsitselfincreasinglyinterwindedwithitsglobalpartners,keepingaliveitscommitmenttofreetradewillprov
Thereisnomorefashionablesolutiontothecurrentglobalrecessionthan"greenjobs."Manycountriesarealleagerlypromotin
最新回复
(
0
)