C#按參照傳遞引數方法

2019-10-16 23:17:44

參照引數是對變數的記憶體位置的參照。按參照傳遞引數與按值傳遞引數不同,不會為這些引數建立新的儲存位置。參照引數表示與傳遞給方法的實際引數具有相同的儲存位置。

可以使用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

它顯示了在swap()函式中的值已經更改,並且此更改在Main()函式中有反映。