传递引用类型参数

引用类型的变量不直接包含其数据;它包含的是对其数据的引用。当经过值传递引用类型的参数时,有可能更改引用所指向的数据,如某类成员的值。可是没法更改引用自己的值;也就是说,不能使用相同的引用为新类分配内存并使之在块外保持。若要这样作,应使用 refout 关键字传递参数。为了简单起见,下面的示例使用 ref数组

下面的示例演示经过值向 Change 方法传递引用类型的参数 arr。因为该参数是对 arr 的引用,因此有可能更改数组元素的值。可是,试图将参数从新分配到不一样的内存位置时,该操做仅在方法内有效,并不影响原始变量 arrapp

C#
 
class PassingRefByVal 
{
    static void Change(int[] pArray)
    {
        pArray[0] = 888;  // This change affects the original element.
        pArray = new int[5] {-3, -1, -2, -3, -4};   // This change is local.
        System.Console.WriteLine("Inside the method, the first element is: {0}", pArray[0]);
    }

    static void Main() 
    {
        int[] arr = {1, 4, 5};
        System.Console.WriteLine("Inside Main, before calling the method, the first element is: {0}", arr [0]);

        Change(arr);
        System.Console.WriteLine("Inside Main, after calling the method, the first element is: {0}", arr [0]);
    }
}

Inside Main, before calling the method, the first element is: 1ide

Inside the method, the first element is: -3spa

Inside Main, after calling the method, the first element is: 888code

在上个示例中,数组 arr 为引用类型,在未使用 ref 参数的状况下传递给方法。在此状况下,将向方法传递指向 arr 的引用的一个副本。输出显示方法有可能更改数组元素的内容,在这种状况下,从 1 改成 888。可是,在 Change 方法内使用 new 运算符来分配新的内存部分,将使变量 pArray 引用新的数组。所以,这以后的任何更改都不会影响原始数组 arr(它是在 Main 内建立的)。实际上,本示例中建立了两个数组,一个在 Main 内,一个在 Change 方法内。ip

本示例除在方法头和调用中使用 ref 关键字之外,其他与上个示例相同。方法内发生的任何更改都会影响调用程序中的原始变量。内存

C#
 
class PassingRefByRef 
{
    static void Change(ref int[] pArray)
    {
        // Both of the following changes will affect the original variables:
        pArray[0] = 888;
        pArray = new int[5] {-3, -1, -2, -3, -4};
        System.Console.WriteLine("Inside the method, the first element is: {0}", pArray[0]);
    }
        
    static void Main() 
    {
        int[] arr = {1, 4, 5};
        System.Console.WriteLine("Inside Main, before calling the method, the first element is: {0}", arr[0]);

        Change(ref arr);
        System.Console.WriteLine("Inside Main, after calling the method, the first element is: {0}", arr[0]);
    }
}

Inside Main, before calling the method, the first element is: 1element

Inside the method, the first element is: -3字符串

Inside Main, after calling the method, the first element is: -3get

方法内发生的全部更改都影响 Main 中的原始数组。实际上,使用 new 运算符对原始数组进行了从新分配。所以,调用 Change 方法后,对 arr 的任何引用都将指向 Change 方法中建立的五个元素的数组。

交换字符串是经过引用传递引用类型参数的很好的示例。本示例中,str1str2 两个字符串在 Main 中初始化,并做为由 ref 关键字修改的参数传递给 SwapStrings 方法。这两个字符串在该方法内以及 Main 内均进行交换。

C#
 
class SwappingStrings
{
    static void SwapStrings(ref string s1, ref string s2)
    // The string parameter is passed by reference.
    // Any changes on parameters will affect the original variables.
    {
        string temp = s1;
        s1 = s2;
        s2 = temp;
        System.Console.WriteLine("Inside the method: {0} {1}", s1, s2);
    }

    static void Main()
    {
        string str1 = "John";
        string str2 = "Smith";
        System.Console.WriteLine("Inside Main, before swapping: {0} {1}", str1, str2);

        SwapStrings(ref str1, ref str2);   // Passing strings by reference
        System.Console.WriteLine("Inside Main, after swapping: {0} {1}", str1, str2);
    }
}

Inside Main, before swapping: John Smith

Inside the method: Smith John

Inside Main, after swapping: Smith John

本示例中,须要经过引用传递参数以影响调用程序中的变量。若是同时从方法头和方法调用中移除 ref 关键字,则调用程序中不会发生任何更改。

相关文章
相关标签/搜索