ref 和 out 的區別(筆試常會考的題目)

來源:互聯網
上載者:User

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 的參數在傳遞之前不需要顯式初始化。

儘管 refout 在運行時的處理方式不同,但它們在編譯時間的處理方式是相同的。因此,如果一個方法採用 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 />}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.