国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

C#集合--ICollection接口和IList接口

2019-11-17 03:17:08
字體:
來源:轉載
供稿:網友

C#集合--ICollection接口和IList接口

雖然列舉接口提供了一個協議,用于向前的方式遍歷集合,但它們沒有提供一種機制來確定集合的大小,通過索引訪問集合的成員,搜索集合,或修改集合。為了實現這些功能,.NET Framework定義了ICollection,IList和IDictionary接口。每個接口都有Generic的接口和非Generic的接口,請注意非Generic多數用于支持遺留代碼。

這些接口的繼承掛關系如下圖所示:

image

Generic的接口和非Generic的接口之間的差距超出了你的預期,特別是ICollection和ICollection<T>。這是由于歷史原因造成的,因為Generic類型是C# 2.0才引入的,所以Generic吸取了非Generic接口的經驗和教訓,從而設計了與之不同的但更優秀的接口。正式由于這個原因,ICollection<T>并沒有派生自ICollection,同樣地,IList<T>也沒有派生自IList, IDictionary<TKey,TValue>也沒有派生自IDinctionary。因此集合類可以同時實現Generic的接口和非Generic的接口。(事實上,集合類一般都實現了兩個類型接口,比如class Collection<T>: IList<T>, IList,有比如List<T> : IList<T>, System.Collections.IList)。

ICollection<T>和ICollection

ICollection<T>是可以統計集合中對象的標準接口。該接口可以確定集合的大小(Count),集合是否包含某個元素(Contains),復制集合到另外一個數組(ToArray),集合是否是只讀的(IsReadOnly)。如果一個集合是可編輯的,那么可以調用Add,Remove和Clear方法操作集合中的元素。因為該接口繼承IEnumerable<T>,所以可以使用foreach語句遍歷集合。該接口的定義如下

public interface ICollection<T> : IEnumerable<T>{    // Number of items in the collections.            int Count { get; }    bool IsReadOnly { get; }    void Add(T item);    void Clear();    bool Contains(T item);                 // CopyTo copies a collection into an Array, starting at a particular    // index into the array.    //     void CopyTo(T[] array, int arrayIndex);                //void CopyTo(int sourceIndex, T[] destinationArray, int destinationIndex, int count);    bool Remove(T item);}

而非Generic的ICollection定義如下:

public interface ICollection : IEnumerable{       void CopyTo(Array array, int index);          int Count { get; }    Object SyncRoot { get; }               bool IsSynchronized { get; }}

與ICollection<T>相比較,ICollection實現了計算集合元素數目的功能,但明沒有提供更改集合的功能。此外,ICollection還提供了同步的功能。而ICollection<T>則取消了同步的功能,這是因為對于Generic的集合,它們本身是線程安全的。

這兩個接口既簡單又容易實現。假如要實現一個只讀的ICollection<T>,那么在Add,Remove,和Clear方法中拋出異常即可。

這些接口通常與任何IList或IDictionary接口中的任意一個一起實現。

IList<T>和IList

如果想通過位置獲取集合元素,那么IList<T>就是此類集合的標準接口。此外,由于IList<T>繼承了ICollection<T>和IEnumerable<T>,所以此接口還提供了根據位置讀取或寫入元素,或者在指定的位置插入或刪除元素。IList<T>定義如下

public interface IList<T> : ICollection<T>{    T this[int index] { get; set; }        int IndexOf(T item);    void Insert(int index, T item);          void RemoveAt(int index);}

IndexOf方法在集合上執行線性搜索,如果沒有發現指定元素,那么返回-1。

List類的IndexOf方法的實現:(List.IndexOf(T item)調用Array.IndexOf(_items, item, index, _size - index),然后調用EqualityComparer<T>.Default.IndexOf(array, value, startIndex, count))

internal virtual int IndexOf(T[] array, T value, int startIndex, int count) {    int endIndex = startIndex + count;    for (int i = startIndex; i < endIndex; i++) {        if (Equals(array[i], value)) return i;    }    return -1;}

而非Generic的IList則包含了更多成員,因為它繼承ICollection

public interface IList : ICollection{    Object this[int index] {  get;set; }        int Add(Object value);    bool Contains(Object value);    void Clear();    bool IsReadOnly  { get; }    bool IsFixedSize  { get; }    int IndexOf(Object value);    void Insert(int index, Object value);    void Remove(Object value);    void RemoveAt(int index);}

IList接口的Add方法返回一個整數,這是加到集合中元素的位置。而IList<T>接口的Add方法返回值為空。

C#中,List<T>就是典型的既實現了IList<T>又實現了IList的類。

public class List<T> : IList<T>, System.Collections.IList, IReadOnlyList<T>

C#數組也實現了generic和非generic的IList接口。C#中Array類的部分代碼(實現IList接口的代碼)

public abstract class Array : ICloneable, IList, IStructuralComparable, IStructuralEquatable{    ......    public bool IsReadOnly    { get { return false; } }    public bool IsFixedSize    {        get { return true; }    }    Object IList.this[int index]    {        get { return GetValue(index); }        set { SetValue(value, index); }    }    int IList.Add(Object value)    {        throw new NotSupportedException(Environment.GetResourceString("NotSupported_FixedSizeCollection"));    }    bool IList.Contains(Object value)    {        return Array.IndexOf(this, value) >= this.GetLowerBound(0);    }    void IList.Clear()    {        Array.Clear(this, this.GetLowerBound(0), this.Length);    }    int IList.IndexOf(Object value)    {        return Array.IndexOf(this, value);    }    void IList.Insert(int index, Object value)    {        throw new NotSupportedException(Environment.GetResourceString("NotSupported_FixedSizeCollection"));    }    void IList.Remove(Object value)    {        throw new NotSupportedException(Environment.GetResourceString("NotSupported_FixedSizeCollection"));    }    void IList.RemoveAt(int index)    {        throw new NotSupportedException(Environment.GetResourceString("NotSupported_FixedSizeCollection"));    }    ......}

而Generic的IList<T>是在sealed class SZArrayHelper中實現的。SZ(Single dimensional, Zero-based)。請注意,如果你在技術與上調用add或者remove方法,那么會返回NotSupportedException異常

image

IReadonlyList<T>

為了與Windows運行時的制度集合互操作,Framework4.5引入了一個新的集合接口IReadOnlyList<T>。該接口自身就非常有用,也可以看作IList的縮減版,對外只公開用于只讀的操作。其定義如下:

public interface IReadOnlyCollection<out T> : IEnumerable<T>{    int Count { get; }}public interface IReadOnlyList<out T> : IReadOnlyCollection<T>{    T this[int index] { get; }}

因為類型參數僅僅用于輸出位置,所以其標記為協變(covariant)。比如,一個cats列表,可以看作一個animals的只讀列表。相反,在IList<T>中,T沒有標記為協變,因為T應用于輸入和輸出位置。

你可能認為IList<T>派生自IReadonlyList<T>,然后,微軟并沒有這么做,這是因為這么做就要求把IList<T>的成員移動到IReadonlyList<T>,這就給CLR4.5帶來重的變化(程序員需要重新編輯程序以避免運行時錯誤)。實際上,微軟在IList<T>的實現類中手動地添加了對IReadonlyList<T>接口的實現。

在Windows運行時中IVectorView<T>與.NET Framework的IReadonlyList<T>相對應。

參考

線性搜索(Linear Search): http://en.wikipedia.org/wiki/Linear_search; http://blog.teamleadnet.com/2012/02/quicksort-binary-search-and-linear.html

數組實現IList<T>: http://stackoverflow.com/questions/11163297/how-do-arrays-in-c-sharp-partially-implement-ilistt/11164210#11164210

數組的奧秘: http://stackoverflow.com/questions/19914523/mystery-behind-system-array

協變: http://stackoverflow.com/questions/2719954/understanding-covariant-and-contravariant-interfaces-in-c-sharp

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 张掖市| 随州市| 辉县市| 新安县| 仲巴县| 绥化市| 宜川县| 曲周县| 周口市| 永寿县| 新余市| 焦作市| 东至县| 安远县| 民乐县| 曲水县| 康定县| 长沙市| 南漳县| 隆化县| 普兰店市| 同德县| 河北省| 新和县| 辽源市| 方正县| 醴陵市| 辽宁省| 溧阳市| 夹江县| 和顺县| 上饶县| 大渡口区| 虹口区| 安康市| 东乌珠穆沁旗| 泸州市| 海阳市| 醴陵市| 鸡东县| 万山特区|