ref 關鍵字使參數按引用傳遞。其效果是,當控制權傳遞迴調用方法時,在方法中對參數所做的任何更改都將反映在該變數中。
若要使用 ref 參數,則方法定義和調用方法都必須顯式使用 ref 關鍵字。例如:
class RefExample<br />{<br /> static void Method(ref int i)<br /> {<br /> i = 44;<br /> }<br /> static void Main()<br /> {<br /> int val = 0;<br /> Method(ref val);<br /> // val is now 44<br /> }<br />}
傳遞到 ref 參數的參數必須最先初始化。
這與 out 不同,out 的參數在傳遞之前不需要顯式初始化。
儘管 ref 和 out 在運行時的處理方式不同,但它們在編譯時間的處理方式是相同的。因此,如果一個方法採用 ref 參數,而另一個方法採用 out 參數,則無法重載這兩個方法。例如,從編譯的角度來看,以下代碼中的兩個方法是完全相同的,因此將不會編譯以下代碼:
class CS0663_Example<br />{<br /> // compiler error CS0663: "cannot define overloaded<br /> // methods that differ only on ref and out"<br /> public void SampleMethod(ref int i) { }<br /> public void SampleMethod(out int i) { }<br />}<br />
但是,如果一個方法採用 ref 或 out 參數,而另一個方法不採用這兩類參數,則可以進行重載,如下所示:
class RefOutOverloadExample<br />{<br /> public void SampleMethod(int i) { }<br /> public void SampleMethod(ref int i) { }<br />}