C# 中的 ref 和 out 引數有什麼區別?
Ref 引數
參考引數是變數記憶體位置的引用。當您按引用傳遞引數時,與值引數不同的是,不會為這些引數建立新的儲存位置。
您可以使用 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
Out 引數
可以在函式中使用 return 語句僅返回一個值。但是,使用 out 引數,您可以從函式中返回兩個值。
以下是示例 -
示例
using System; namespace CalculatorApplication { class NumberManipulator { public void getValue(out int x ) { int temp = 10; x = temp; } static void Main(string[] args) { NumberManipulator n = new NumberManipulator(); /* local variable definition */ int a = 150; Console.WriteLine("Before method call, value of a : {0}", a); /* calling a function to get the value */ n.getValue(out a); Console.WriteLine("After method call, value of a : {0}", a); Console.ReadLine(); } } }
輸出
Before method call, value of a : 150 After method call, value of a : 10
廣告