我們如何在 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
廣告