所以我经常遇到这种情况......Do.Something(...)返回一个空集合,如下所示:
Do.Something(...)
int[] returnArray = Do.Something(...);
然后,我尝试像这样使用这个集合:
foreach (int i in returnArray) { // do some more stuff }
我只是好奇,为什么 foreach 循环不能对空集合进行操作?对我来说,使用空集合执行 0 次迭代似乎是合乎逻辑的......相反,它会抛出一个NullReferenceException. 有谁知道为什么会这样?
NullReferenceException
这很烦人,因为我使用的 API 并不清楚它们返回的确切内容,所以我最终if (someCollection != null)到处都是......
if (someCollection != null)
编辑: 谢谢大家解释foreach使用GetEnumerator,如果没有枚举器可以获取,foreach 将失败。我想我在问为什么语言/运行时在获取枚举器之前不能或不会进行空值检查。在我看来,这种行为仍然可以很好地定义。
foreach
GetEnumerator
嗯,简短的回答是“因为这是编译器设计者设计它的方式”。但实际上,您的集合对象为空,因此编译器无法让枚举数循环遍历集合。
如果您确实需要执行此类操作,请尝试使用 null 合并运算符:
int[] array = null; foreach (int i in array ?? Enumerable.Empty<int>()) { System.Console.WriteLine(string.Format("{0}", i)); }