gpt4 book ai didi

c# - ToDictionary() 是否创建副本或引用?

转载 作者:太空宇宙 更新时间:2023-11-03 21:11:16 26 4
gpt4 key购买 nike

关于 ToDictionary() 的 MSDN 文档并没有多说它实际上是如何工作的。我想知道它是创建字典及其元素的副本,还是只是重复使用相同的引用和枚举器。

例如,如果我有一个 ConcurrentDictionary c,并且我通过调用 c.ToDictionary(...) 创建了一个 Dictionary d ,我可以使用(想想 foreach)d 独立地(以线程安全的方式)更新 c 的线程吗?

事实上,当我这样做时,我得到:

Collection was modified; enumeration operation may not execute.

...序列化 d 时。

最佳答案

Enumerable.ToDictionary创建您的集合的浅拷贝。

您可以在 .NET Reference source 中看到此行为:

public static Dictionary<TKey, TElement> ToDictionary<TSource, TKey, TElement>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, Func<TSource, TElement> elementSelector, IEqualityComparer<TKey> comparer)
{
if (source == null) throw Error.ArgumentNull("source");
if (keySelector == null) throw Error.ArgumentNull("keySelector");
if (elementSelector == null) throw Error.ArgumentNull("elementSelector");
Dictionary<TKey, TElement> d = new Dictionary<TKey, TElement>(comparer);
foreach (TSource element in source) d.Add(keySelector(element), elementSelector(element));
return d;
}

如您所见,它创建了一个新的 Dictionary,遍历您的集合并将所有元素添加到其中,应用选择器函数。因此,如果您更新原始集合,词典将不会更新,反之亦然。

关于c# - ToDictionary() 是否创建副本或引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37520948/

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