如何选择使用IEnumerable, ICollection, IList_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 如何选择使用IEnumerable, ICollection, IList

如何选择使用IEnumerable, ICollection, IList

 2015/4/2 10:05:58  Darren Ji  程序员俱乐部  我要评论(0)
  • 摘要:IEnumerable,ICollection,IList,每种接口只适合某些特定场景,如何区别使用呢?IEnumerable接口,只提供了一个获取迭代器的方法,这也是为什么可以使用foreach遍历实现了IEnumerable接口集合的原因。publicinterfaceIEnumerable{IEnumeratorGetEnumerator();}ICollection实现了IEnumerable接口,因此,除了拥有IEnumerable接口的能力,还包括其它能力
  • 标签:使用 list

IEnumerable, ICollection, IList,每种接口只适合某些特定场景,如何区别使用呢?

 

IEnumerable接口,只提供了一个获取迭代器的方法,这也是为什么可以使用foreach遍历实现了IEnumerable接口集合的原因。

 

monospace; width: 100%; margin: 0em; background-color: #f0f0f0">public interface IEnumerable
{
    IEnumerator GetEnumerator();
}

 

ICollection实现了IEnumerable接口,因此,除了拥有IEnumerable接口的能力,还包括其它能力。

 

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

 

IList同时实现了ICollection和IEnumerable接口,在2个接口的基础上,可以添加、移除或清空集合,还提供了根据索引访问集合元素。

 

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

 

总结:

● 如果只想遍历集合,使用IEnumerable, IEnumerable<T>
● 如果想遍历、修改集合,以及需要延迟加载的导航属性,使用ICollection, ICollection<T>
● 如果想遍历、修改、添加、清空、使用索引,使用IList, IList<T>

发表评论
用户名: 匿名