這是將引數傳遞給方法的預設機制。在這種機制中,當呼叫一個方法時,會為每個值引數建立一個新的儲存位置(拷貝值)。
實際引數的值被複製到方法體中。因此,方法中的引數所做的更改對引數沒有影響。 以下範例演示了以下概念:
using System;
namespace CalculatorApplication
{
class NumberManipulator
{
public void swap(int x, int y)
{
int temp;
temp = x; /* save the value of x */
x = y; /* put y into x */
y = temp; /* put temp into y */
}
static void Main(string[] args)
{
NumberManipulator n = new NumberManipulator();
/* local variable definition */
int a = 100;
int b = 200;
Console.WriteLine("Before swap, value of a : {0}", a);
Console.WriteLine("Before swap, value of b : {0}", b);
/* calling a function to swap the values */
n.swap(a, b);
Console.WriteLine("After swap, value of a : {0}", a);
Console.WriteLine("After swap, value of b : {0}", b);
Console.ReadLine();
}
}
}
當編譯和執行上述程式碼時,會產生以下結果:
Before swap, value of a :100
Before swap, value of b :200
After swap, value of a :100
After swap, value of b :200
它表明,儘管函式內部已經發生了變化,但引數值並沒有改變。