方法參數 Ref 與 參考型別

來源:互聯網
上載者:User

       首先,這篇文章,只是無聊的產物,沒什麼具體的理論解釋。

 

       大家應該都明白,方法的參數前面 加上ref或者out的作用,但是,參考型別的參數前面,添不添加ref,有什麼區別呢?

 

如下是一段簡單的代碼。

 

代碼

 1  class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             test a = new test() { ID = 1 };
 6 
 7             test c = new test();
 8 
 9             TestRef b = new TestRef();
10             b.Test(ref a);
11 
12             b.Test(c);
13 
14             Console.WriteLine(string.Format(@" ref value={0}", a.ID));
15             Console.WriteLine(string.Format(@" not ref value={0}", c.ID));
16             Console.ReadLine();
17         }
18     }
19 
20     public class test
21     {
22         public int ID { get; set; }
23     }
24 
25     public class TestRef
26     {
27         public void Test(ref test test)
28         {
29             test.ID = 2;
30 
31             Console.WriteLine(string.Format(@" ref value={0}", test.ID));
32             //test = new test() { ID = 5 };
33         }
34 
35         public void Test(test test)
36         {
37             test.ID = 3;
38             Console.WriteLine(string.Format(@" not ref value={0}", test.ID));
39             //test = new test() { ID = 4 };
40         }
41     }

 

 

運行下,相信結果都是大家所想的。

 

但是,去掉代碼裡面登出掉的那兩行,結果呢?

 

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.