C#基礎之yield與Singleton

來源:互聯網
上載者:User
1.執行個體解析yiled的作用

最近參加java筆試題第一次見到yield這個關鍵字,既然遇見了那肯定要掌握,下面是C#中關於yield關鍵字的總結。yield這個關鍵字作用於迭代器塊中,其最本質的功能有2個:一是“依次”向枚舉對象提供值,二是發出迭代結束訊號。這兩個功能對應的語句分別是yield return和yield break。

下面有2個小例子,分別沒有使用yield和有使用yield。先來看第一個,當我調試時顯然執行到GetResult()方法時將會跳轉到方法內部並且執行完,接著再去執行輸出當前值語句。從結果可以看出第一個是0,說明返回的枚舉數所在的位置在集合中是0,接著才是我想要的遍曆資料,也就是說只有調用MoveNext()後枚舉數才會繼續向前移動得到下一個值,但是此時資料已全部載入到記憶體。

再來看第二個例子,當我調試到GetResultByYield()方法時我想進入到這個方法內部結果發現直接執行下一句,根本就沒有進入到GetResultByYield()方法內部。此時發現result.Current是null,再加上前面根本都沒執行方法內部的代碼,因此我猜測此時集合都是空的。繼續調試,當執行MoveNext()方法時才去執行GetResultByYield(),接著執行到yield return隨即返回main()方法輸出枚舉數所代表的集合中的值。

從上面可以看到只有調用MoveNext()需要用的時候才去執行方法來獲得結果,不用的時候並不會有任何結果。這個地方編譯器會有一個狀態機器用來儲存迭代器的狀態,以保證for迴圈時是從上一次yield return停止的狀態繼續執行。這個過程就好比小方要喝一升的水,如果它用一個一升的杯子喝那麼他要準備一個一升的容器去飲水機裝滿一升的水。

如果小方喝到一半喝不完了,那接下來剩下的水則將被回收,這樣無論能不能喝完都必須準備好一升的水,就像第一個例子。現在讓杯子的容積縮小為0.2升,小方喝完一杯後再去飲水機去打水,每次只喝0.2升。這樣只有他要去喝的時候才去打水,如果他喝到一半不想喝了顯然浪費的水比第一種方式多,這就像第二個例子。最後根據條件不再需要資料便可調用yield return來跳出while迴圈,如果不寫yield break仍然可以正常結束迭代。

///    /// 不使用yield的時候    ///    class Program    {        static void Main(string[] args)        {            //得到一個迭代結果            var result = GetResult();            //輸出當前的值            Console.WriteLine(result.Current);            Console.WriteLine("開始遍曆");            while (result.MoveNext())            {                Console.WriteLine(result.Current);            }            Console.WriteLine("遍曆結束");            Console.ReadLine();        }        //不使用yield來進行迭代        static IEnumeratorint> GetResult()        {            var arr = new int[] { 1, 6, 8, 12,15};            Listint> list = new Listint>();            foreach (int item in arr)            {                if (item 12)                    list.Add(item);            }            return list.GetEnumerator();        }     }///    /// 使用yield關鍵字    ///    class Program    {        static void Main(string[] args)        {            //得到一個迭代結果            var result = GetResultByYield();            //輸出當前的值            Console.WriteLine(result.Current);            Console.WriteLine("開始遍曆");            while (result.MoveNext())            {                Console.WriteLine(result.Current);            }            Console.WriteLine("遍曆結束");            Console.ReadLine();          }        //使用yield來進行迭代        static IEnumerator GetResultByYield()        {            var arr = new int[] { 1,6,8,12,15};            foreach (var item in arr)            {                yield return item;                if (item == 12)                    yield break;            }        }     }

輸出結果如下:


2.深入yield

將上面第二個例子放入Reflector工具中,便得到了下面三段代碼。第一段是完整的Pragrom類的C#代碼,第二段是d__0密封類的C#展開代碼,第三段是GetResultByYield()方法的IL代碼。在第一段代碼中可以看到系統自動產生了一個d__0密封類,它裡面聲明了一些名字很奇怪的欄位,不過我們可以很清楚的看到這個類裡面有最重要的MoveNext()方法和Current屬性。

第二段代碼則是這個密封類的C#展開代碼,到這裡不知道讀者有沒有和我當初一樣的疑問:為什麼要自動產生一個密封類呢?答案就在第三段代碼中,可以看到在GetResultByYield()方法中並沒有遍曆數組,甚至都沒有看到建立數組的newarr指令,而是newobj建立了d__0密封類的執行個體對象。這也正是前面調試的時候為什麼根本就沒進去GetResultByYield()方法的原因,因為真真的實現代碼是在密封類裡面的MoveNext()方法中。前面還提到yield是按需所取,因此需要一個狀態機器來記錄每次yield return的狀態。

在MoveNext()方法中由於密封類建構函式傳進去的是一個0(在第三段代碼中可以看到),因此第一次進入到MoveNext方法時this.__state=0。此時current欄位由於沒賦值因此就是null了。接著建立數組並開始一個while迴圈(原來foreach就是while迴圈),在迴圈中給current欄位賦值並讓state欄位值為2,最後返回true。拿Current屬性時就是拿while迴圈中給current賦的值,再次進入這個方法內此時state等於2於是跳轉到Label_0090,也就是進入while語句塊中繼續迴圈,這就是按需所取的原理。當遇到yield break後會先執行Dispose釋放資源,再執行break語句跳出迴圈。可以看到上述這個過程就是一個狀態機器,而這個密封類是為建立一個狀態機器來產生的,現在我們自己也可以寫出一個狀態機器了。

internal class Program{    // Methods    public Program();    private static IEnumerator GetResultByYield();    private static void Main(string[] args);     // Nested Types    [CompilerGenerated]    private sealed class d__0 : IEnumeratorobject>, IEnumerator, IDisposable    {        // Fields        private int 1__state;        private object 2__current;        public int[] 7__wrap4;        public int 7__wrap5;        public int[] 5__1;        public int 5__2;         // Methods        [DebuggerHidden]        public d__0(int 1__state);        private void m__Finally3();        private bool MoveNext();        [DebuggerHidden]        void IEnumerator.Reset();        void IDisposable.Dispose();         // Properties        object IEnumeratorobject>.Current { [DebuggerHidden] get; }        object IEnumerator.Current { [DebuggerHidden] get; }    }}private sealed class d__0 : IEnumeratorobject>, IEnumerator, IDisposable{    // Fields    private int 1__state;    private object 2__current;    public int[] 7__wrap4;    public int 7__wrap5;    public int[] 5__1;    public int 5__2;     // Methods    [DebuggerHidden]    public d__0(int 1__state)    {        this.1__state = 1__state;    }     private void m__Finally3()    {        this.1__state = -1;    }     private bool MoveNext()    {        try        {            switch (this.1__state)            {                case 0:                    this.1__state = -1;                    this.5__1 = new int[] { 1, 6, 8, 12, 15 };                    this.1__state = 1;                    this.7__wrap4 = this.5__1;                    this.7__wrap5 = 0;                    while (this.7__wrap5 this.7__wrap4.Length)                    {                        this.5__2 = this.7__wrap4[this.7__wrap5];                        this.2__current = this.5__2;                        this.1__state = 2;                        return true;                    Label_0090:                        this.1__state = 1;                        if (this.5__2 == 12)                        {                            this.System.IDisposable.Dispose();                            break;                        }                        this.7__wrap5++;                    }                    this.m__Finally3();                    break;                 case 2:                    goto Label_0090;            }            return false;        }        fault        {            this.System.IDisposable.Dispose();        }    }     [DebuggerHidden]    void IEnumerator.Reset()    {        throw new NotSupportedException();    }     void IDisposable.Dispose()    {        switch (this.1__state)        {            case 1:            case 2:                this.m__Finally3();                break;        }    }     // Properties    object IEnumeratorobject>.Current    {        [DebuggerHidden]        get        {            return this.2__current;        }    }     object IEnumerator.Current    {        [DebuggerHidden]        get        {            return this.2__current;        }    }} .method private hidebysig static class [mscorlib]System.Collections.IEnumerator GetResultByYield() cil managed    {        .maxstack 1        .locals init (            [0] class ConsoleApplication1.Program/d__0 d__,            [1] class [mscorlib]System.Collections.IEnumerator enumerator)        L_0000: ldc.i4.0        L_0001: newobj instance void ConsoleApplication1.Program/d__0::.ctor(int32)        L_0006: stloc.0        L_0007: ldloc.0        L_0008: stloc.1        L_0009: br.s L_000b        L_000b: ldloc.1        L_000c: ret    }

3.單例模式

單例模式沒什麼好說的,當然如果深挖應該也是大有學問,其中我覺得比較好的一種寫法如下。單例模式的代碼我看過多次不過卻沒怎麼寫,結果真真寫的時候再加上時間又有點緊最後寫的一塌糊塗。以後寫代碼要興平氣和地去寫,急躁的狀態寫不出什麼好代碼。當然總會有煩躁的時候,所以只能多寫代碼來讓自己寫出高品質的代碼成為一種習慣!

class A    {        private static A instance = new A();        public static A Instance        {            get { return A.instance; }        }    }

以上就是C#基礎之yield與Singleton的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

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