C#中ICollection介绍

Posted 笨鹤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中ICollection介绍相关的知识,希望对你有一定的参考价值。

ICollection 接口是 System.Collections 命名空间中类的基接口,ICollection 接口扩展 IEnumerable,IDictionary 和 IList 则是扩展 ICollection 的更为专用的接口。如果 IDictionary 接口和 IList 接口都不能满足所需集合的要求,则从 ICollection 接口派生新集合类以提高灵活性。

ICollection是IEnumerable的加强型接口,它继承自IEnumerable接口,提供了同步处理、赋值及返回内含元素数目的功能

 

一、ICollection接口的原型

 
C# 代码   复制
技术分享

技术分享namespace System.Collections
技术分享{
技术分享    // 摘要:
技术分享    //     定义所有非泛型集合的大小、枚举器和同步方法。
技术分享    [ComVisible(true)]
技术分享    public interface ICollection : IEnumerable
技术分享    {
技术分享        // 摘要:
技术分享        //     获取 System.Collections.ICollection 中包含的元素数。
技术分享        //
技术分享        // 返回结果:
技术分享        //     System.Collections.ICollection 中包含的元素数。
技术分享        int Count { get; }
技术分享        //
技术分享        // 摘要:
技术分享        //     获取一个值,该值指示是否同步对 System.Collections.ICollection 的访问(线程安全)。
技术分享        //
技术分享        // 返回结果:
技术分享        //     如果对 System.Collections.ICollection 的访问是同步的(线程安全),则为 true;否则为 false。
技术分享        bool IsSynchronized { get; }
技术分享        //
技术分享        // 摘要:
技术分享        //     获取一个可用于同步对 System.Collections.ICollection 的访问的对象。
技术分享        //
技术分享        // 返回结果:
技术分享        //     可用于同步对 System.Collections.ICollection 的访问的对象。
技术分享        object SyncRoot { get; }
技术分享
技术分享        // 摘要:
技术分享        //     从特定的 System.Array 索引处开始,将 System.Collections.ICollection 的元素复制到一个 System.Array
技术分享        //     中。
技术分享        //
技术分享        // 参数:
技术分享        //   array:
技术分享        //     作为从 System.Collections.ICollection 复制的元素的目标位置的一维 System.Array。System.Array
技术分享        //     必须具有从零开始的索引。
技术分享        //
技术分享        //   index:
技术分享        //     array 中从零开始的索引,将在此处开始复制。
技术分享        //
技术分享        // 异常:
技术分享        //   System.ArgumentNullException:
技术分享        //     array 为 null。
技术分享        //
技术分享        //   System.ArgumentOutOfRangeException:
技术分享        //     index 小于零。
技术分享        //
技术分享        //   System.ArgumentException:
技术分享        //     array 是多维的。- 或 -源 System.Collections.ICollection 中的元素数目大于从 index 到目标 array
技术分享        //     末尾之间的可用空间。
技术分享        //
技术分享        //   System.ArgumentException:
技术分享        //     源 System.Collections.ICollection 的类型无法自动转换为目标 array 的类型。
技术分享        void CopyTo(Array array, int index);
技术分享    }
技术分享}
技术分享

 

二、IEnumerable接口

 

1、IEnumerable接口是ICollection的父接口,凡实现此接口的类,都具备“可迭代”的能力。

2、IEnumerable接口只定义了一个方法:GetEnumerator,该方法将返回一个“迭代子”对象(或称为迭代器对象),是一个实现了IEnumerator接口的对象实例。

3、凡是实现了IEnumerable接口的类,都可以使用foreach循环迭代遍历。

 

 

三、简单的ICollection实现范例

 

C# 代码   复制
技术分享

技术分享public class MyCollectioin:ICollection
技术分享{
技术分享   private string[] list;
技术分享   private object root;
技术分享   
技术分享   public MyCollection()
技术分享   {
技术分享       list = new string[3]{"1","3","4"};
技术分享   }
技术分享
技术分享    #region ICollection Members
技术分享    public bool IsSynchronized
技术分享    {
技术分享        get{
技术分享           return true;
技术分享        }
技术分享    }
技术分享
技术分享     public int Count
技术分享     {
技术分享         get
技术分享         {
技术分享            return list.Length;
技术分享         }
技术分享     }
技术分享
技术分享     public void CopyTo(Array array,int index)
技术分享     {
技术分享         list.CopyTo(array,index);
技术分享     }
技术分享    
技术分享    public object SyncRoot
技术分享    {
技术分享        get
技术分享         {
技术分享            return root;
技术分享         }
技术分享    }
技术分享    #endregioin 
技术分享    
技术分享    #region IEnumerable Members
技术分享     public IEnumerable GetEnumerator()
技术分享     {
技术分享        return list.GetEnumerator();
技术分享     }
技术分享
技术分享    #endregion
技术分享}
技术分享

 

 

四、ICollection<T>

 

ICollection<T>是可以统计集合中对象的标准接口。该接口可以确定集合的大小(Count),集合是否包含某个元素(Contains),复制集合到另外一个数组(ToArray),集合是否是只读的(IsReadOnly)。如果一个集合是可编辑的,那么可以调用Add,Remove和Clear方法操作集合中的元素。因为该接口继承IEnumerable<T>,所以可以使用foreach语句遍历集合。

 

ICollection<T>定义源码

 
C# 代码   复制
技术分享

技术分享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);
技术分享}
技术分享

以上是关于C#中ICollection介绍的主要内容,如果未能解决你的问题,请参考以下文章

如何在 c#,wpf 的 GridController 中将 ICollection 显示为一个字符串

C#栈的简单介绍

C#程序员经常用到的10个实用代码片段 - 操作系统

C#常用代码片段备忘

是否可以动态编译和执行 C# 代码片段?

记录C#常用的代码片段