我使用以下程序来交换矩形结构的长度和宽度
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->)
将成员变量的地址传递给函数。有人可以解释一下吗?
答案 0 :(得分:8)
您是using namespace std;
。
在标准c ++库中存在this version of the swap function,它带有两个引用并驻留在std
命名空间中。
当您使用&
时,会调用您的函数。如果你不是,那就是来自标准库的那个。实际上,使用using
指令,您无需在函数名称前添加std::
。因此,在您的情况下,您的swap
函数作为标准库中的{{1}}函数的重载存在。