C#按值传递参数方法

这是将参数传递给方法的默认机制。在这种机制中,当调用一个方法时,会为每个值参数创建一个新的存储位置(拷贝值)。

实际参数的值被复制到方法体中。因此,方法中的参数所做的更改对参数没有影响。 以下示例演示了以下概念:

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

它表明,尽管函数内部已经发生了变化,但参数值并没有改变。


上一篇: C#方法 下一篇: C#可空类型(nullable)