關於迭代器中IEnumerable與IEnumerator的區別

来源:http://www.cnblogs.com/JsonZhangAA/archive/2016/04/09/5372292.html
-Advertisement-
Play Games

首先是IEnumerable與IEnumerator的定義: 1.IEnumerable介面允許使用foreach迴圈,包含GetEnumerator()方法,可以迭代集合中的項。 2.IEnumerator介面是一個真正的集合訪問器,它包含MoveNext()方法和Current屬性,在forea ...


首先是IEnumerable與IEnumerator的定義:

1.IEnumerable介面允許使用foreach迴圈,包含GetEnumerator()方法,可以迭代集合中的項。

2.IEnumerator介面是一個真正的集合訪問器,它包含MoveNext()方法和Current屬性,在foreach迴圈中,如果MoveNext()返回True,則就是用IEnumerator介面的Current屬性來獲取對象的一個引用,用於foreach迴圈。

3.如果要迭代一個類,可以使用GetEnumerator(),其返回類型是IEnumerator.

 如果要迭代一個類成員,則用IEnumerable.

下麵的例子是迭代Person類中的類成員Ages,使用了IEnumerable。第二個例子則是迭代一個類,所以使用了IEnumerator作為返回值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;

namespace _10_5_5
{
    public class person
    {
        private string name;
        private int age;
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }
        public int Age
        {
            get
            {
                return age;
            }
            set
            {
                age = value;
            }
        }
        public person(string PName, int PAge)
        {
            Name = PName;
            Age = PAge;
        }
        public static bool operator >(person a, person b)
        {
            if (a.Age > b.Age)
                return true;
            else
                return false;
        }
        public static bool operator <(person a, person b)
        {
            if (a.Age > b.Age)
                return false;
            else
                return true;
        }
        public static bool operator >=(person a, person b)
        {
            if (a.Age >= b.Age)
            {
                return true;
            }
            else
                return false;
        }
        public static bool operator <=(person a, person b)
        {
            if (a.Age <= b.Age)
                return true;
            else
                return false;
        }
    }
    public class People : DictionaryBase
    {
        public IEnumerable Ages//註意是IEnumerable
        {
            get
            {
                foreach (object person in Dictionary.Values)
                {
                    yield return (person as person).Age;
                }
            }
        }
        public person[] GetOldest()
        {
            People oldPeople = new People();
            person oldPerson = null;
            person currentPerson;
            foreach (DictionaryEntry myPeople in Dictionary)
            {
                currentPerson = myPeople.Value as person;
                if (oldPerson == null)
                {
                    oldPerson = currentPerson;
                    oldPeople.Add(oldPerson);
                }
                else
                {
                    if (currentPerson > oldPerson)
                    {
                        oldPeople.Clear();
                        oldPeople.Add(currentPerson);
                        oldPerson = currentPerson;
                    }
                    else
                    {
                        if (currentPerson >= oldPerson)
                        {
                            oldPeople.Add(currentPerson);
                        }
                    }
                }
            }
            person[] oldestPeopleArray = new person[oldPeople.Count];
            int copyIndex = 0;
            foreach (DictionaryEntry p in oldPeople)
            {
                oldestPeopleArray[copyIndex] = p.Value as person;
                copyIndex++;
            }
            return oldestPeopleArray;
        }
        public void Add(person p)
        {
            Dictionary.Add(p.Name, p);
        }
        public person this[string SName]
        {
            get
            {
                return (person)Dictionary[SName];
            }
            set
            {
                Dictionary[SName] = value;
            }
        }

    }
    class Program
    {
        static void Main(string[] args)
        {
            person a = new person("Jack", 11);
            person b = new person("Json", 10);
            People s = new People();
            s.Add(a);
            s.Add(b);
            foreach(int age in s.Ages)
            {
                Console.WriteLine("{0}\t", age);
            }
            Console.ReadKey();
        }
    }
}

 

下麵是自定義的一個迭代器的例子:

Primer.CS

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ch11Ex03_Exam
{
    public class Primes
    {
        private long min;
        private long max;
        public Primes():this(2,100)
        {
            
        }
        public Primes(long minNum,long maxNum)
        {
            if(minNum<2)
            {
                min=2;
            }else{
                min = minNum;
            }
            max = maxNum;
        }
        public IEnumerator GetEnumerator()//返回的是IEnumerator
        {
            for(long i=min;i<max;i++)
            {
                int flag = 1;
                for(long j=2;j<Math.Sqrt(min);j++)
                {
                    if(i%j==0)
                    {
                        flag = 0;
                        break;
                    }
                }
                if(flag==1)
                {
                    yield return i;
                }
            }
        }
    }
}

Program.CS:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ch11Ex03_Exam
{
    class Program
    {
        static void Main(string[] args)
        {
            Primes s = new Primes(2, 100);
            foreach(long i in s)
            {
                Console.WriteLine("{0}\t", i);
            }
            Console.ReadKey();
        }
    }
}

 


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

-Advertisement-
Play Games
更多相關文章
  • asp.net MVC請求過程 ASP.NET MVC框架只是給開發者提供了開發web應用程式的一種選擇,並不是要取代Webform這兩種技術各有優缺點,開發者需要根據實際情況,選擇對應的技術有時候,可以在同一個項目中混合使用這兩種技術 WebForm請求過程 個人網站:http://www.51p ...
  • SqlBulkCopy原理是採用了SQL Server的BCP協議進行數據的批量複製,結合使用事務,就我們的案例而言,大約每批800條是平衡點,性能比逐條插入提高了100多倍,並前面同樣使用事務批量插入的案例性能提升了7倍以上。 個人網站:http://www.51pansou.com .net視頻 ...
  • 剛剛接觸NHibernate和FluentNHibernate,所以最好的方法是從一個簡單的例子入手。 開發環境考慮到是實際情況還有好多朋友沒有用VS2015,就用VS2013withUpdate5吧。 1.創建Asp.net Web應用程式(MVC),叫FluentNHibernateDemo1 ...
  • 分類:Unity、C#、VS2015 創建日期:2016-04-10 一、簡介 Unity擁有功能完善的地形編輯器,支持以筆刷繪製的方式實時雕刻出山脈、峽谷、平原、高地等地形。Unity地形編輯器同時提供了實時繪製地表材質紋理、樹木種植、大面枳草地佈置等功能。值得—提的是,Unity中的地形編輯器支... ...
  • 軟體下載: http://hovertree.com/h/bjaf/hwqtjwjs.htm 截圖:使用方法:點擊按鈕,選擇文件夾,就可以顯示文件夾中包含的文件總數。這個項目包含在HoverTree解決方案中。源碼下載:http://hovertree.com/h/bjaf/cao15h74.htm ...
  • 一、引言 在前一篇文章中,我向大家介紹瞭如何實現實現端對端聊天的功能的,在這一篇文章中將像大家如何使用SignalR實現群聊這樣的功能。 二、實現思路 要想實現群聊的功能,首先我們需要創建一個房間,然後每個線上用戶可以加入這個房間裡面進行群聊,我們可以為房間設置一個唯一的名字來作為標識。那Signa ...
  • 1.前言 現在這個項目已經有階段性的模塊完成了,所以就想著對這些模塊進行單元測試,以保證項目的代碼的質量。首先雖然標題是mvc+webapi實質上我只是對mvc進行的測試。用的時候vs的unit test generator.至於它的安裝和介紹在這不做詳細介紹。好的現在開始總結我的單元測試總結。 2 ...
  • 前言當我們訪問某個網站的時候需要檢測用戶是否已經登錄(通過Session是否為null),我們知道在WebForm中可以定義一個BasePage類讓他繼承System.Web.UI.Page,重寫它的OnInit()方法,在OnInit()中判斷Session中是否有用戶登錄的信息。 在mvc下該怎 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...