gpt4 book ai didi

c# - 为什么 Count() 方法使用 "checked"关键字?

转载 作者:行者123 更新时间:2023-12-03 04:15:15 24 4
gpt4 key购买 nike

正如我所看到的 the difference between Count and Count() ,我想看一眼Count()的源代码.我看到以下代码片段,我想知道为什么 checked关键字是必要的/需要的:

int num = 0;
using (IEnumerator<TSource> enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
num = checked(num + 1);
}
return num;
}

源代码:
// System.Linq.Enumerable
using System.Collections;
using System.Collections.Generic;

public static int Count<TSource>(this IEnumerable<TSource> source)
{
if (source == null)
{
ThrowHelper.ThrowArgumentNullException(ExceptionArgument.source);
}
ICollection<TSource> collection = source as ICollection<TSource>;
if (collection != null)
{
return collection.Count;
}
IIListProvider<TSource> iIListProvider = source as IIListProvider<TSource>;
if (iIListProvider != null)
{
return iIListProvider.GetCount(onlyIfCheap: false);
}
ICollection collection2 = source as ICollection;
if (collection2 != null)
{
return collection2.Count;
}
int num = 0;
using (IEnumerator<TSource> enumerator = source.GetEnumerator())
{
while (enumerator.MoveNext())
{
num = checked(num + 1);
}
return num;
}
}

最佳答案

因为它不想在序列中有超过 20 亿个项目的(不可否认的)事件中返回一个负数 - 或者在(更不可能的)情况下返回一个非负但只是错误的数字序列中有超过 40 亿个项目。 checked将检测溢出条件。

关于c# - 为什么 Count() 方法使用 "checked"关键字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60849446/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com