了解IEnumerable
Posted AdolphChen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了了解IEnumerable相关的知识,希望对你有一定的参考价值。
首先我是看了一篇很棒的博客
先说IEnumerable,我们每天用的foreach你真的懂它吗?
这里面比较全面的介绍了迭代器的使用原理,很好的回答了博主自己提出的三个问题。然后下面是我自己的一些小结
为什么在foreach中不能修改item的值?
答案是IEnumerator的object Current只有get方法,Collection返回的IEnumerator把当前的属性暴露为只读属性,所以对其的修改会导致运行时错误。
一开始我还在想能不能实现set方法,尝试几次后发现是自己犯蠢了,这应该是故意设计成无法修改值的,真要修改值的话只需要把foreach改为for来遍历就好了。
什么是yield关键词?
- 是简化遍历操作实现的语法糖
- 有yield retrun和yield break
- 只能使用在返回类型必须为 IEnumerable、IEnumerable<T>、IEnumerator 或 IEnumerator<T>的方法、运算符、get访问器中
作为一种语法糖,yield只是减少了代码量,最终实现还是通过接口实现。
详情可见:c# yield关键字原理详解
最后mark一下这个IEnumerable随机取值的方法(来源《深入理解C#》),真的很厉害
//随机取值 public static class RandomValue { public static T RandomEnumerableValue<T>(this IEnumerable<T> source, Random random) { if (source == null) throw new ArgumentNullException("sourcce"); if (random == null) throw new ArgumentNullException("random"); if (source is ICollection) { ICollection collection = source as ICollection; int count = collection.Count; if (count == 0) { throw new Exception("IEnumerable没有数据"); } int index = random.Next(count); return source.ElementAt(index); } using (IEnumerator<T> iterator = source.GetEnumerator()) { if (!iterator.MoveNext()) { throw new Exception("IEnumerable没有数据"); } int count = 1; T current = iterator.Current; while (iterator.MoveNext()) { count++; if (random.Next(count) == 0) current = iterator.Current; } return current; } } }
以上是关于了解IEnumerable的主要内容,如果未能解决你的问题,请参考以下文章