C++中对象作为函数参数传递的问题

什么时候必须加&,什么时候又不用,例如下面两段程序,第一段没问题,第二段运行错,必须在形参x前加&。#include<iostream.h>classtr{private... 什么时候必须加&,什么时候又不用,例如下面两段程序,第一段没问题,第二段运行错,必须在形参x前加&。
#include <iostream.h>
class tr
{
private:
int i;
public:
tr(int n);
int get();
};
tr::tr(int n)
{
i=n;
}
int tr::get()
{
return i;
}

void dsp(tr t)
{
cout<<t.get()<<endl;
}
int main()
{
tr t_r(10);
dsp(t_r);
return 0;
}
第二段:
#include <iostream.h>
#include <string.h>
class people
{
private:
char *name;
int age;
public:
people(char *namestr,int i);
~people();
char *getname();
int getage();
};
people::people(char *namestr,int i)
{
name=new char[strlen(namestr)+1];
strcpy(name,namestr);
age=i;
}
people::~people()
{
delete name;
}
char *people::getname()
{
return name;
}
int people::getage()
{
return age;
}
void display(people x)
{
cout<<"people\'s name: "<<x.getname()<<endl;
cout<<"people\'s age: "<<x.getage()<<endl;
}

int main()
{
people p("xieyi",30);
display(p);
return 0;
}
展开
 我来答
夏冬琦
2011-06-01 · TA获得超过133个赞
知道答主
回答量:32
采纳率:0%
帮助的人:24.4万
展开全部
1.首先要明确void display(people x){...}是传值方式传参,实参要向形参复制对象,在复制对象时会调用拷贝构造函数。
2.由于people类中没有显式定义拷贝构造函数,将使用默认拷贝构造函数不会自动复制堆资源(即通过new得到的资源)。
3.因此void display(people x){...}执行时,会调用默认拷贝构造函数,所以x对象中的name属性没有赋值,指向了未知的地址,因此x.getname()会出错。
解决的办法有两个:1.使用引用传参,2.显式定义拷贝构造函数。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式