讀經典——《CLR via C#》(Jeffrey Richter著) 筆記_參考型別和實值型別(二)

來源:互聯網
上載者:User

標籤:

【參考型別和實值型別的區別】

//參考型別(由於使用了‘class’)class SomeRef  { public Int32 x; }//實值型別(由於使用了‘struct’)struct SomeVal { public Int32 x; }static void ValueTypeDemo() {    SomeRef r1 = new SomeRef(); //在堆上分配    SomeVal v1 = new SomeVal(); //在棧上分配    r1.x = 5; //提另指標    v1x = 5; //在棧上修改    Console.WriteLine(r1.x); //顯示”5“    Console.WriteLine(v1.x);//顯示”5“      SomeRef r2 = r1; //只複製引用(指標)    SomeVal v2 = v1;//在棧中分配並複製成員    r1.x = 8;//r1.x和r2.x都會改變    v1.x = 9;//v1.x 會更改,但v2.x不變    Console.WriteLine(r1.x);//顯示"8"    Console.WriteLine(r2.x);//顯示"8"    Console.WriteLine(v1.x);//顯示"9"    Console.WriteLine(v2.x);//顯示"5"}

【圖解】

 

讀經典——《CLR via C#》(Jeffrey Richter著) 筆記_參考型別和實值型別(二)

聯繫我們

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