如何选择使用IEnumerable, ICollection, IList
2018-06-23 22:51:42来源:未知 阅读 ()
IEnumerable, ICollection, IList,每种接口只适合某些特定场景,如何区别使用呢?
IEnumerable接口,只提供了一个获取迭代器的方法,这也是为什么可以使用foreach遍历实现了IEnumerable接口集合的原因。
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>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- CSS中的float和margin的混合使用 2020-06-11
- 如果是自学WEB前端的话,该如何才能找到一份7K实习生工作呢 2020-06-04
- 前端如何学习? 2020-06-04
- 如何成为一名优秀的web前端工程师 2020-06-02
- 零基础小白转行如何入门学习web前端 2020-06-01
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash