- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试实现 Set 相等性(即顺序不相关的列表比较),并在阅读了诸如 this 之类的问题之后和 this ,编写了以下简单扩展:
public static bool SetEqual<T>(this IEnumerable<T> enumerable, IEnumerable<T> other)
{
if (enumerable == null && other == null)
return true;
if (enumerable == null || other == null)
return false;
var setA = new HashSet<T>(enumerable);
return setA.SetEquals(other);
}
但是,我遇到了一个简单的数据结构,这种方法对其不起作用,而 Enumerable.SequenceEqual 却可以。
public class Test : IEquatable<Test>
{
public Guid Id { get; set; }
public List<Test> RelatedTest { get; set; }
public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
if (obj.GetType() != typeof(Test)) return false;
return Equals((Test)obj);
}
public bool Equals(Test other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return other.Id.Equals(Id) &&
RelatedTest.SetEqual(other.RelatedTest);
}
}
给定这个对象,这个测试成功:
[Test]
public void SequenceEqualTest()
{
var test1 = new List<Test> {new Test()};
var test2 = new List<Test> {new Test() };
Assert.That(test1.SequenceEqual(test2), Is.True);
}
但是这个测试失败了:
[Test]
public void SetEqualTest()
{
var test1 = new List<Test> {new Test()};
var test2 = new List<Test> {new Test()};
Assert.That(test1.SetEqual(test2), Is.True);
}
谁有解释吗?
最佳答案
是的,您没有在 Test
类中覆盖 GetHashCode
,因此 HashSet 无法根据可能的相等性有效地将项目分组到桶中。有关详细信息,请参阅此问题:Why is it important to override GetHashCode when Equals method is overridden?
关于c# - SequenceEqual 为真但 HashSet.SetEquals 为假,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12557257/
我们有 SetEquals检查不同集合类型是否相等的方法。但是将对元素执行什么相等性测试?将使用 Equals 或 ReferenceEquals 吗? 在API它只是说: Determines wh
我一直在尝试实现 Set 相等性(即顺序不相关的列表比较),并在阅读了诸如 this 之类的问题之后和 this ,编写了以下简单扩展: public static bool SetEqual
我一直在尝试实现 Set 相等性(即顺序不相关的列表比较),并在阅读了诸如 this 之类的问题之后和 this ,编写了以下简单扩展: public static bool SetEqual
我在引用数组中引用 ID 时遇到问题。当我尝试这个时: Task.find({ game: req.user.game }).exec(function(err, task) { if(err
如果我像下面这样设置a和b, a <- c(1,2,3) b <- c(1,2,100) setequal(a,b) 和 R 中的 identical(a,b) 有什么区别? 我的意思是,从根本上与定
一位 Python 开发人员在这里进行一些 C#(.NET 4.6、Visual Studio 2015 Professional)工作。我正在尝试检查是否有两个 HashSet s 相等。 我有两个
我是一名优秀的程序员,十分优秀!