久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

IEnumerable, IEnumerator

 球球圓圓豆豆 2015-12-22

IEnumerator:提供在普通集合中遍歷的接口,有Current,,MoveNext(),,Reset(),其中Current返回的是object類型,。
IEnumerable: 暴露一個IEnumerator,,支持在普通集合中的遍歷。
IEnumerator<T>:繼承自IEnumerator,,有Current屬性,,返回的是T類型。
IEnumerable<T>:繼承自IEnumerable,暴露一個IEnumerator<T>,,支持在泛型集合中遍歷,。

1. 要使自定義的集合類型支持foreach訪問,就要實現(xiàn)IEnumerable接口,。

2. 在很多地方有討論為什么新增加的泛型接口IEnumerable<T>要繼承IEnumerable,,這是為了兼容。理論上所有的泛型接口都要繼承自所有的非泛型接口,。例如在.net 1.1中有個方法接收的是IEnumerable類型的參數(shù),,當移植到新的環(huán)境下,我們傳入一個IEnumerable<T>的參數(shù),,它也是可以被接受的,,因為他們完成的都是枚舉的行為。

然而特殊的是IList<T>沒有繼承自IList接口,,因為如果讓IList<T>繼承IList的話,,那么是實現(xiàn)IList<int>的類就需要實現(xiàn)兩個Insert方法,一個是IList<int>的void Insert(int index, int item),,另外一個是IList的void Insert(int index, object item),,這是就有一個接口可以把object類型的數(shù)據(jù)插入到IList<int>集合中了,這是不對的,,所以不繼承,。

而IEnumerable<T>不同的是,它只有”輸出“的作用,,也就是說我們只會從它里面取數(shù)據(jù),,所以不會有上面描述的混亂出現(xiàn),。

3. 下面的例子描述了如何使用
首先,,有一個Person類:

復制代碼

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

        public string firstName;
        public string lastName;
    }
復制代碼


第一種方式實現(xiàn)People集合:

復制代碼

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];
            }
        }

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

    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;
        }

        public object Current
        {
            get
            {
                try
                {
                    return _people[position];
                }
                catch (IndexOutOfRangeException)
                {
                    throw new InvalidOperationException();
                }
            }
        }
    }
復制代碼


第二種方式,讓People自己也實現(xiàn)IEnumerator接口:

復制代碼

    public class People : IEnumerable, IEnumerator
    {
        private Person[] _people;
        int position = -1;

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

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

        #region IEnumerable Members

        public IEnumerator GetEnumerator()
        {
            return this;
        }

        #endregion

        #region IEnumerator Members

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

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

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

        #endregion
    }
復制代碼


第三種方式,,用泛型指定了類型:

復制代碼

public class People : IEnumerable<Person>, IEnumerator<Person>
    {
        private Person[] _people;
        int position = -1;

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

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

        #region IEnumerable<Person> Members

        public IEnumerator<Person> GetEnumerator()
        {
            return this;
        }

        #endregion

        #region IEnumerable Members

        IEnumerator IEnumerable.GetEnumerator()
        {
            return this;
        }

        #endregion

        #region IEnumerator<Person> Members

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

        #endregion

        #region IDisposable Members

        public void Dispose()
        {
        }

        #endregion

        #region IEnumerator Members

        object IEnumerator.Current
        {
            get
            {
                try
                {
                    return _people[position];
                }
                catch (IndexOutOfRangeException)
                {
                    throw new IndexOutOfRangeException();
                }
            }
        }

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

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

        #endregion
    }
復制代碼


然后就可以用foreach對自定義集合訪問了:
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);

下面介紹yield關(guān)鍵字的用法:

注意兩點:第一,,它只能用在一個iterator的方法中,也就是說這個方法的返回值類型只能是IEnumerable,,IEnumerator,,IEnumerable<T>或IEnumerator<T>;第二,,它只有兩種語法:yield return 表達式,;或者是yield break;
例如下面用yield return返回循環(huán)中每一個滿足條件的值,,但是并不退出方法:
public static class NumberList
{
// Create an array of integers. 
public static int[] ints = { 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377 }; 
// Define a property that returns only the even numbers.
public static IEnumerable<int> GetEven()
{
// Use yield to return the even numbers in the list.

foreach (int i in ints)

if (i % 2 == 0)
yield return i;
}
}

調(diào)用的地方如下:
// Display the even numbers.
Console.WriteLine("Even numbers");
foreach (int i in NumberList.GetEven())
Console.WriteLine(i);

在這種用iterator的循環(huán)中,,只能用yield break退出循環(huán)(也退出了整個方法),若是用break是編譯不過的。例如:
public static IEnumerable<int> GetEven()
{// Use yield to return the even numbers in the list.

foreach (int i in ints)
if (i % 2 == 0)
yield break;

Console.WriteLine();
}
如果yield break;會被執(zhí)行到的話,,則后面的Console.WriteLine();是不會被執(zhí)行的,,整個方法體已經(jīng)在yield break被執(zhí)行后就退出了。

另外下面這種寫法:
IEnumerable<int> GetValues()
        {
            yield return 1;
            yield return 2;
            yield return 3;
            yield return 4;
        }
則可以用
foreach (int i in this.GetValues())
            {
                Console.WriteLine(i);
            }
來輸出,,第一次取第一個yield return的值1,,第二次取第二個yield return的值2,依此類推,。

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導購買等信息,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多