位置:首页 > 高级语言 > C++在线教程 > C++函数引用调用

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