C++ 派生于继承const string& name=string(),中const 作用是什么?name前面为什么加&;源代码如下:谢谢

#include<iostream>#include<string>usingnamespacestd;classCPerson{private:stringname;c... #include <iostream>
#include <string>
using namespace std;

class CPerson{
private:
string name;
char sex;//f-female,m-male
int age;
string work;
public:
CPerson(const string& name=string(),
const char& sex=char(),
const int& age=int(),
const string& work=string()):name(name),
sex(sex),
age(age),
work(work){}
virtual ~CPerson(){};
void showName()const{
cout<<"Name:\t"<<name<<endl;
}
void showSex()const{
cout<<"Sex:\t"<<sex<<endl;
}
void showAge()const{
cout<<"Age:\t"<<age<<endl;
}
void showWork()const{
cout<<"Work:\t"<<work<<endl;
}
virtual void showAllInfo()const{
showName();
showSex();
showAge();
showWork();
}
};
class CStudent : public CPerson{
string school;
string subject;
int grade;
public:
CStudent(const string& name=string(),
const char& sex=char(),
const int& age=int(),
const string& work=string(),
const string& school=string(),
const string& subject=string(),
const int& grade=int()
):CPerson(name,sex,age,work),school(school),
subject(subject),
grade(grade){}
void showSchool()const{
cout<<"School:\t"<<school<<endl;
}
void showSubject()const{
cout<<"Subject:"<<subject<<endl;
}
void showGrade()const{
cout<<"Grade:\t"<<grade<<endl;
}
void showAllInfo()const{
CPerson::showAllInfo();
showSchool();
showSubject();
showGrade();
}
};
int main()
{
CPerson cp("Green",'f',18,"teacher");
cp.showAllInfo();
cout<<"==================="<<endl;
CStudent cs("Tom",'m',15,"student","Qinhua University","Math",2011);
cs.showAllInfo();

return 0;
}
void showAllInfo()const{
CPerson::showAllInfo();
showSchool();
showSubject();
showGrade();}的作用与意义是什么????
展开
 我来答
King920406
推荐于2018-03-28 · TA获得超过594个赞
知道小有建树答主
回答量:100
采纳率:0%
帮助的人:84.8万
展开全部
CStudent(const string& name=string(),.....) //const 作用是什么?name前面为什么加&

const用来表明定义的该变量为一个常量, &是一个引用运算符, 举例:
如你写的构造函数,在string类型前加const,表明该参数在函数中不允许被修改,
在name前加&,表明在函数调用时,传递的是实参的引用,可以理解成地址,所以,不会创建临时变量,省空间,而且快
蟑螂111119e0b6da
2012-05-23 · TA获得超过220个赞
知道答主
回答量:138
采纳率:0%
帮助的人:38.6万
展开全部
楼上说的很明白,我都不知道说什么.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式