科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道c#中通过值和引用传递参数 2

c#中通过值和引用传递参数 2

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

   传递引用类型参数 引用类型的变量不直接包含其数据;它包含的是对其数据的引用

作者:中国IT实验室 来源:中国IT实验室 2007年9月10日

关键字: C# 编程

  • 评论
  • 分享微博
  • 分享邮件
  
传递引用类型参数

引用类型的变量不直接包含其数据;它包含的是对其数据的引用。当通过值传递引用类型的参数时,有可能更改引用所指向的数据,如某类成员的值。但是无法更改引用本身的值;也就是说,不能使用相同的引用为新类分配内存并使之在块外保持。若要这样做,请使用 ref(或 out)关键字传递参数。为了简单起见,以下示例使用 ref。

示例 4:通过值传递引用类型

下面的示例演示通过值向 Change 方法传递引用类型的参数 myArray。由于该参数是对 myArray 的引用,所以有可能更改数组元素的值。但是,试图将参数重新分配到不同的内存位置时,该操作仅在方法内有效,并不影响原始变量 myArray。

// PassingParams4.cs 
// Passing an array to a method without the ref keyword.
// Compare the results to those of Example 5.
using System;
class PassingRefByVal 
{
   
static void Change(int[] arr)
   
{
      arr[
0]=888;   // This change affects the original element.
      arr = new int[5{-3-1-2-3-4};   // This change is local.
      Console.WriteLine("Inside the method, the first element is: {0}", arr[0]);
   }

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

}

输出

Inside Main, before calling the method, the first element is: 1
Inside the method, the first element is: -3
Inside Main, after calling the method, the first element is: 888

代码讨论

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

示例 5:通过引用传递引用类型

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

// PassingParams5.cs 
// Passing an array to a method with the ref keyword.
// Compare the results to those of Example 4.
using System;
class PassingRefByRef 
{
   
static void Change(ref int[] arr)
   
{
      
// Both of the following changes will affect the original variables:
      arr[0]=888;
      arr 
= new int[5{-3-1-2-3-4};
      Console.WriteLine(
"Inside the method, the first element is: {0}", arr[0]);
   }

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

}

输出

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

代码讨论

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

示例 6:交换两个字符串

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

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

    
public static void Main()
    
{
        
string str1 = "John";
        
string str2 = "Smith";
        Console.WriteLine(
"Inside Main, before swapping: {0} {1}"
           str1, str2);
        SwapStrings(
ref str1, ref str2);   // Passing strings by reference
        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 关键字,则调用程序中不会发生任何更改。

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章