c# – 匿名类型的平等

前端之家收集整理的这篇文章主要介绍了c# – 匿名类型的平等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Why does the Equals implementation for anonymous types compare fields?4个
当用于比较匿名类型时,为什么Equals()和==的语义不同?为什么要比较值和其他比较参考?它背后的原因是什么?

解决方法

==不调用Equals,它查找==重载运算符.由于匿名类型没有重载==运算符,因此C#使用引用比较.

但是使用Equals可以比较字段值.这就是==和Equals之间的结果不同的原因.

Anonymous Types (C# Programming Guide)

Because the Equals and GetHashCode methods on anonymous types are
defined in terms of the Equals and GetHashCode methods of the
properties,two instances of the same anonymous type are equal only if all their properties are equal.

原文链接:https://www.f2er.com/csharp/91709.html

猜你在找的C#相关文章