我使用以下程序来交换矩形结构的长度和宽度
typedef struct rectangle
{
int len;
int wid;
} rect;
void swap(int* a, int * b)
{
int temp;
temp= *a;
*a=*b;
*b=temp;
}
int main()
{
rect rect1;
rect *r1;
r1= &rect1;
r1->len=10;
r1->wid=5;
cout<< "area of rect " << r1->len * r1->wid<<endl;
swap(&r1->len,&r1->wid);
cout<< "length=" << rect1.len<<endl;
cout<<"width=" <<rect1.wid;
}
但是,当我使用以下内容时:
swap(r1->len,r1->wid);
代替:
swap(&r1->len,&r1->wid);
我仍然得到正确的结果,但我不确定它是如何工作的。根据我的理解,我应该使用(&r1->)
将成员变量的地址传递给函数。有人可以解释一下吗?