这个问题在这里已经有一个答案:>
What are the differences between a pointer variable and a reference variable in C++?30个
任何人都可以告诉我通过指针调用和通过引用调用之间的确切差异.实际上这两种情况发生了什么?
任何人都可以告诉我通过指针调用和通过引用调用之间的确切差异.实际上这两种情况发生了什么?
例如:
通过参考调用:
void swap(int &x,int &y) { int temp; temp = x; /* save the value at address x */ x = y; /* put y into x */ y = temp; /* put x into y */ return; } swap(a,b);
通过指针拨号:
void swap(int *x,int *y) { int temp; temp = *x; /* save the value at address x */ *x = *y; /* put y into x */ *y = temp; /* put x into y */ return; } swap(&a,&b);
解决方法
这两种情况都完全一样.
但是,小的区别是,引用永远不会为空(并且内部函数确实是引用有效变量).另一方面,指针可能为空,或者可能指向存储器中的无效位置,导致AV.