位置:首页 > 高级语言 > C#在线教程 > C#传递参数引用

C#传递参数引用

引用参数是一个引用变量的存储位置。当你按引用传递参数,不像按值传递参数,新的存储位置没有为这些参数创建。引用参数代表相同的存储单元被提供给该方法的实际参数。

在C#中,声明使用ref关键字的引用参数。下面的例子说明了这一点:

using System;
namespace CalculatorApplication
{
   class NumberManipulator
   {
      public void swap(ref int x, ref 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(ref a, ref 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 : 200
After swap, value of b : 100

它表明,该值已在交换函数内被改变,这种变化反映在Main函数中。