C++引用传递函数调用



将参数传递给函数的引用传递方法将参数的引用复制到形式参数中。在函数内部,引用用于访问调用中使用的实际参数。这意味着对参数所做的更改会影响传递的参数。

要通过引用传递值,将参数引用传递给函数,就像传递任何其他值一样。因此,您需要像以下函数swap()一样将函数参数声明为引用类型,该函数交换其参数指向的两个整型变量的值。

// function definition to swap the values.
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(),如下例所示:

#include <iostream>
using namespace std;

// function declaration
void swap(int &x, int &y);

int main () {
   // local variable declaration:
   int a = 100;
   int b = 200;
 
   cout << "Before swap, value of a :" << a << endl;
   cout << "Before swap, value of b :" << b << endl;

   /* calling a function to swap the values using variable reference.*/
   swap(a, b);

   cout << "After swap, value of a :" << a << endl;
   cout << "After swap, value of b :" << b << endl;
 
   return 0;
}

当以上代码放在一个文件中,编译并执行时,会产生以下结果:

Before swap, value of a :100
Before swap, value of b :200
After swap, value of a :200
After swap, value of b :100
cpp_functions.htm
广告