C#中foreach實現原理

来源:http://www.cnblogs.com/alongdada/archive/2017/09/26/7598119.html
-Advertisement-
Play Games

本文主要記錄我在學習C#中foreach遍歷原理的心得體會。 對集合中的要素進行遍歷是所有編碼中經常涉及到的操作,因此大部分編程語言都把此過程寫進了語法中,比如C#中的foreach。經常會看到下麵的遍歷代碼: 實際此代碼的執行過程: 會發現有GetEnumerator()方法和IEnumerato ...


本文主要記錄我在學習C#中foreach遍歷原理的心得體會。

 

對集合中的要素進行遍歷是所有編碼中經常涉及到的操作,因此大部分編程語言都把此過程寫進了語法中,比如C#中的foreach。經常會看到下麵的遍歷代碼:

            var lstStr = new List<string> { "a", "b" };
            foreach (var str in lstStr)
            {
                Console.WriteLine(str);
            }

實際此代碼的執行過程:

            var lstStr = new List<string> {"a", "b"};
            IEnumerator<string> enumeratorLst = lstStr.GetEnumerator();
            while (enumeratorLst.MoveNext())
            {
                Console.WriteLine(enumeratorLst.Current);
            }

會發現有GetEnumerator()方法和IEnumerator<string>類型,這就涉及到可枚舉類型和枚舉器的概念。

為了方便理解,以下為非泛型示例:

    // 摘要:
    //     公開枚舉器,該枚舉器支持在非泛型集合上進行簡單迭代。
    public interface IEnumerable
    {
        // 摘要:
        //     返回一個迴圈訪問集合的枚舉器。
        //
        // 返回結果:
        //     可用於迴圈訪問集合的 System.Collections.IEnumerator 對象。
        IEnumerator GetEnumerator();
    }

實現了此介面的類稱為可枚舉類型,是可以用foreach進行遍歷的標誌。

方法GetEnumerator()的返回值是枚舉器,可以理解為游標。

    // 摘要:
    //     支持對非泛型集合的簡單迭代。
    public interface IEnumerator
    {
        // 摘要:
        //     獲取集合中的當前元素。
        //
        // 返回結果:
        //     集合中的當前元素。
        //
        // 異常:
        //   System.InvalidOperationException:
        //     枚舉數定位在該集合的第一個元素之前或最後一個元素之後。
        object Current { get; }

        // 摘要:
        //     將枚舉數推進到集合的下一個元素。
        //
        // 返回結果:
        //     如果枚舉數成功地推進到下一個元素,則為 true;如果枚舉數越過集合的結尾,則為 false。
        //
        // 異常:
        //   System.InvalidOperationException:
        //     在創建了枚舉數後集合被修改了。
        bool MoveNext();
        //
        // 摘要:
        //     將枚舉數設置為其初始位置,該位置位於集合中第一個元素之前。
        //
        // 異常:
        //   System.InvalidOperationException:
        //     在創建了枚舉數後集合被修改了。
        void Reset();
    }

以下是自定義一個迭代器的示例(https://msdn.microsoft.com/en-us/library/system.collections.ienumerator.aspx):

using System;
using System.Collections;

// Simple business object.
public class Person
{
    public Person(string fName, string lName)
    {
        this.firstName = fName;
        this.lastName = lName;
    }

    public string firstName;
    public string lastName;
}

// Collection of Person objects. This class
// implements IEnumerable so that it can be used
// with ForEach syntax.
public class People : IEnumerable
{
    private Person[] _people;
    public People(Person[] pArray)
    {
        _people = new Person[pArray.Length];

        for (int i = 0; i < pArray.Length; i++)
        {
            _people[i] = pArray[i];
        }
    }

// Implementation for the GetEnumerator method.
    IEnumerator IEnumerable.GetEnumerator()
    {
       return (IEnumerator) GetEnumerator();
    }

    public PeopleEnum GetEnumerator()
    {
        return new PeopleEnum(_people);
    }
}

// When you implement IEnumerable, you must also implement IEnumerator.
public class PeopleEnum : IEnumerator
{
    public Person[] _people;

    // Enumerators are positioned before the first element
    // until the first MoveNext() call.
    int position = -1;

    public PeopleEnum(Person[] list)
    {
        _people = list;
    }

    public bool MoveNext()
    {
        position++;
        return (position < _people.Length);
    }

    public void Reset()
    {
        position = -1;
    }

    object IEnumerator.Current
    {
        get
        {
            return Current;
        }
    }

    public Person Current
    {
        get
        {
            try
            {
                return _people[position];
            }
            catch (IndexOutOfRangeException)
            {
                throw new InvalidOperationException();
            }
        }
    }
}

class App
{
    static void Main()
    {
        Person[] peopleArray = new Person[3]
        {
            new Person("John", "Smith"),
            new Person("Jim", "Johnson"),
            new Person("Sue", "Rabon"),
        };

        People peopleList = new People(peopleArray);
        foreach (Person p in peopleList)
            Console.WriteLine(p.firstName + " " + p.lastName);

    }
}

/* This code produces output similar to the following:
 *
 * John Smith
 * Jim Johnson
 * Sue Rabon
 *
 */

在有了yield這個關鍵字以後,我們可以通過這樣的方式來創建枚舉器:

using System;
using System.Collections;

// Simple business object.
public class Person
{
    public Person(string fName, string lName)
    {
        this.firstName = fName;
        this.lastName = lName;
    }

    public string firstName;
    public string lastName;
}

// Collection of Person objects. This class
// implements IEnumerable so that it can be used
// with ForEach syntax.
public class People : IEnumerable
{
    private Person[] _people;

    public People(Person[] pArray)
    {
        _people = new Person[pArray.Length];

        for (int i = 0; i < pArray.Length; i++)
        {
            _people[i] = pArray[i];
        }
    }

    // Implementation for the GetEnumerator method.
    IEnumerator IEnumerable.GetEnumerator()
    {
        for (int i = 0; i < _people.Length; i++)
        {
            yield return _people[i];
        }
    }

}


class App
{
    static void Main()
    {
        Person[] peopleArray = new Person[3]
        {
            new Person("John", "Smith"),
            new Person("Jim", "Johnson"),
            new Person("Sue", "Rabon"),
        };

        People peopleList = new People(peopleArray);
        foreach (Person p in peopleList)
            Console.WriteLine(p.firstName + " " + p.lastName);
    }
}

 

 

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 問題引出 這視乎是個完全不必要進行討論的話題,因為linq(這裡具體是linq to objects)本來就是針對集合類型的,數組類型作為集合類型的一種當然可以使用了。不過我還是想寫一下,這個問題源於qq群里一位朋友的提問:.net的數組類型都隱式繼承了Array類,該類是一個抽象類,並且實現了IE ...
  • 最近winform上使用ReportViewer做報表,因為之前沒弄過,所以遇到了很多問題,現在總結一下。 一、運行環境 .net環境:4.0 開發工具:vs2010 二、開發步驟 第一步,在winform窗體上添加ReportViewer控制項作為呈現報表的容器,重新命名為reportViewerT ...
  • 本篇作為技術分享系列的第三篇,詳細講一下手繪視頻中結合視頻的處理方式。 隨著近幾年短視頻和直播行業的興起,視頻成為了人們表達情緒和交流的一種重要方式,人們對於視頻的創作、編輯和分享有了更多的需求。而視頻的編輯、剪輯方式,也由過去需要藉助專業的視頻剪輯軟體,專業的視頻剪輯操作者操作,變為現在的普通用戶 ...
  • .NET Core 是.NET Framework的新一代跨平臺應用程式開發框架,是微軟在一開始發展時就開源的軟體平臺,ASP.NET Core 以控制台應用程式驅動其托管環境 Kestrel Server 以支持 ASP.NET Core 程式的運行。 ...
  • ADO.NET Entity Framework 是微軟以 ADO.NET 為基礎所發展出來的對象關係對應 (O/R Mapping) 解決方案,不僅支持SQL Server,還支持MySQL、Oracle等資料庫。接下來給大家講解EF6+MYSQL具體的配置流程,以及配置過程中一些常見錯誤的解決方... ...
  • 將String[]類型的Object類型,轉換為String[]類型: 使用 is 進行判斷 ob 是否為 string[] 類型。 將 string 類型轉換為 DateTime 類型: 註意: 使用 DateTime.TryParse(); 進行轉換判斷時,如果返回 true,強制轉換結果將傳入 ...
  • 本文首先介紹Kd-Tree的構造方法,然後介紹Kd-Tree的搜索流程及代碼實現,最後給出本人利用C#語言實現的二維KD樹代碼。這也是我自己動手實現的第一個樹形的數據結構。理解上難免會有偏差,敬請各位多多斧正。 ...
  • 利用三層架構實現對資料庫數據的分頁功能和點擊每個頁碼實現不同分頁面之間的跳轉 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...