How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)
问题描述
我正在尝试确定 .NET 3.5 (C#) 中的两个 HashSet
对象是否是相等的集合,即包含相同的值.这似乎是一个显然想要做的事情,但所提供的功能似乎都没有为您提供这些信息.
I am trying to determine if two HashSet
objects in .NET 3.5 (C#) are equal sets, i.e. contain the same values. This seems like something one would obviously want to do but none of the provided functions seem to give you this information.
我能想到的方法是检查两个集合的计数是否相等并且一个集合是另一个集合的子集(不正确).我认为可能发生的唯一方法是它们是相等的集合.示例代码:
The way I can think to do this is by checking if the count of the two sets are equal and one set is a subset (not proper) of the other. I think the only way that can happen is if they are equal sets. Example code:
HashSet<int> set1 = new HashSet<int>();
set1.Add(1);
set1.Add(2);
set1.Add(3);
HashSet<int> set2 = new HashSet<int>();
set2.Add(1);
set2.Add(2);
set2.Add(3);
if(set1.Count == set2.Count && set1.IsSubsetOf(set2))
{
// do something
}
这总是有效吗?有没有更好的办法?为什么HashSet
没有public bool IsEqualSetWith()
函数?
Would this always work? Is there a better way? Why doesn't HashSet
have a public bool IsEqualSetWith()
function?
推荐答案
看方法SetEquals.
my_hashset.SetEquals(other);
这篇关于您如何确定两个 HashSet 是否相等(按值,而不是按引用)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您如何确定两个 HashSet 是否相等(按值,而不是按引用)?
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01