我阅读了 Passing Arrays Using ref and out (C# Programming Guide) 页面,并想知道为什么我们需要将数组参数定义为ref参数(当它已经是引用类型时)。被调用函数中的更改不会反映在调用函数中吗?
答案 0 :(得分:26)
调用者函数中的变化不会反映在调用者函数中吗?
对数组的内容的更改将反映在调用方法中 - 但参数本身的更改不会。例如:
public void Foo(int[] x)
{
// The effect of this line is visible to the caller
x[0] = 10;
// This line is pointless
x = new int[] { 20 };
}
...
int[] original = new int[10];
Foo(original);
Console.WriteLine(original[0]); // Prints 10
现在,如果我们将Foo
更改为签名:
public void Foo(ref int[] x)
并将调用代码更改为:
Foo(ref original);
然后它会打印20。
理解变量与其值所引用的对象之间的差异非常重要 - 同样在修改对象和修改变量之间也是如此。
有关详细信息,请参阅我的article on parameter passing in C#。
答案 1 :(得分:5)
如果您只打算更改数组的内容,那么您就更正了。但是,如果您打算更改数组本身,则必须通过引用传递。
例如:
void foo(int[] array)
{
array[0] = 5;
}
void bar(int[] array)
{
array = new int[5];
array[0] = 6;
}
void barWithRef(ref int[] array)
{
array = new int[6];
array[0] = 6;
}
void Main()
{
int[] array = int[5];
array[0] = 1;
// First, lets call the foo() function.
// This does exactly as you would expect... it will
// change the first element to 5.
foo(array);
Console.WriteLine(array[0]); // yields 5
// Now lets call the bar() function.
// This will change the array in bar(), but not here.
bar(array);
Console.WriteLine(array[0]); // yields 1. The array we have here was never changed.
// Finally, lets use the ref keyword.
barWithRef(ref array);
Console.WriteLine(array[0]); // yields 5. And the array's length is now 6.
}