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

什么时候必须加&,什么时候又不用,例如下面两段程序,第一段没问题,第二段运行错,必须在形参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;
}

第1个回答  2011-06-01
1.首先要明确void display(people x){...}是传值方式传参,实参要向形参复制对象,在复制对象时会调用拷贝构造函数。
2.由于people类中没有显式定义拷贝构造函数,将使用默认拷贝构造函数不会自动复制堆资源(即通过new得到的资源)。
3.因此void display(people x){...}执行时,会调用默认拷贝构造函数,所以x对象中的name属性没有赋值,指向了未知的地址,因此x.getname()会出错。
解决的办法有两个:1.使用引用传参,2.显式定义拷贝构造函数。本回答被提问者采纳
相似回答