IEqualityComparer<TSource> 比较规则
Posted chasingdreams2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IEqualityComparer<TSource> 比较规则相关的知识,希望对你有一定的参考价值。
class Program
{
static void Main(string[] args)
{
List<People> peoples = new List<People>
{
new People{ ID=1,Name="xxx" },
//new People{ ID=1,Name="xxx" },
new People{ID=2,Name="yyy" },
};
peoples = peoples.Distinct(new Filter()).ToList();
Console.WriteLine("Hello World!" + peoples.Count);
}
}
public class Filter : IEqualityComparer<People>
{
public bool Equals([AllowNull] People x, [AllowNull] People y)
{
Console.WriteLine($"Equals->{x.ID},{y.ID}");
return x.ID == y.ID;
}
public int GetHashCode([DisallowNull] People obj)
{
Console.WriteLine($"GetHashCode->{obj.ID}");
return obj.ID;
}
}
IEqualityComparer
- 如果 HashCode 不同,则不运行 Equals , 直接判定为不同
- 如果 HashCode 相同,则运行 Equals , 根据 Equals 判定相不相不同
以上是关于IEqualityComparer<TSource> 比较规则的主要内容,如果未能解决你的问题,请参考以下文章
使用带有容差的 IEqualityComparer GetHashCode
如何实现 IEqualityComparer 以返回不同的值?