gpt4 book ai didi

c# - 哈希集的浅拷贝

转载 作者:IT王子 更新时间:2023-10-29 04:32:54 25 4
gpt4 key购买 nike

最好的方法是什么?

var set2 = new HashSet<reference_type>();

像这样用 foreach 遍历集合。

foreach (var n in set)
set2.Add(n);

或者像这样使用 union 之类的东西。

set2 = set.UnionWith(set); // all the elements

最佳答案

使用构造函数:

HashSet<type> set2 = new HashSet<type>(set1);

我个人希望 LINQ to Objects 有一个 ToHashSet 扩展方法,就像它对 ListDictionary 所做的那样。创建您自己的当然很容易:

public static HashSet<T> ToHashSet<T>(this IEnumerable<T> source)
{
if (source == null)
{
throw new ArgumentNullException("source");
}
return new HashSet<T>(source);
}

(自定义相等比较器的另一个重载。)

这使得创建匿名类型的集合变得容易。

关于c# - 哈希集的浅拷贝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9648327/

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