C++ 值传递函数调用



将参数传递给函数的值传递方法将参数的实际值复制到函数的形式参数中。在这种情况下,在函数内部对参数所做的更改不会影响参数。

默认情况下,C++ 使用值传递来传递参数。通常,这意味着函数内的代码无法更改用于调用函数的参数。考虑以下函数swap()定义。

// function definition to swap the values.
void swap(int x, int y) {
   int temp;

   temp = x; /* save the value of 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.
   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 :100
After swap, value of b :200

这表明尽管在函数内部更改了值,但值没有发生变化。

cpp_functions.htm
广告