C# ref類型 和 實值型別

來源:互聯網
上載者:User

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
//本程式實驗了實值型別和參考型別的差異,實值型別變數是不能直接修改的,只有通過其變數引用才能對記憶體中的值進行修改

namespace ref_value
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("<------實值型別和參考型別測試開始------>");
            int a = 1;
            Change(a);
            //Change(ref a);//此處為添加ref後代碼
            Console.WriteLine(a);
            int[] b ={1};
            Change(b);
            Console.WriteLine(b[0]);
            string c = "1";
            Change(c);
            Console.WriteLine(c);
            StringBuilder d = new StringBuilder();
            Change(d);
            Console.WriteLine(d);
            Stopwatch sw = new Stopwatch();
            sw.Start();
            Console.WriteLine("<------實值型別和參考型別測試完畢------>");
            Console.WriteLine();
            Console.WriteLine();
            Console.WriteLine("<------StringBuilder和String測試開始------>");
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 10000; i++)
                sb.Append(i);
            Console.WriteLine(sw.ElapsedMilliseconds);//3MillionSeconds
            sw.Reset();
            sw.Start();
            string s = "";
            for (int i = 0; i < 10000; i++)
                s += i;
            Console.WriteLine(sw.ElapsedMilliseconds);//421MillionSeconds
            Console.WriteLine("<------StringBuilder和String測試完畢------>");
        }
        static void Change( int i)//i輸出結果是1
        //static void Change(ref int i)//i輸出結果是2,此處為添加ref後代碼
        {
            i++;
        }
        static void Change(int [] arr)
        {
            arr[0]++;//2
        }
        static void Change(string s)
        {
            s = "2";//1 string雖然是參考型別,但比較特殊,一旦建立後,字串的內容就不可變,每個不同內容的字串會分配一個新的記憶體地區
        }
        static void Change(StringBuilder sb)
        {
            sb.Append("2");//2
        }
    }
}

ref 關鍵字使參數按引用傳遞。其效果是,當控制權傳遞迴調用方法時,在方法中對參數所做的任何更改都將反映在該變數中。若要使用 ref 參數,則方法定義和調用方法都必須顯式使用 ref 關鍵字。

聯繫我們

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