c – 通过引用调用和通过指针调用之间的差异

前端之家收集整理的这篇文章主要介绍了c – 通过引用调用和通过指针调用之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题在这里已经有一个答案:> 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.

原文链接:https://www.f2er.com/c/110381.html

猜你在找的C&C++相关文章