.NET Core(C#) IEqualityComparer<in T>接口的使用方法及示例代码

这篇具有很好参考价值的文章主要介绍了.NET Core(C#) IEqualityComparer<in T>接口的使用方法及示例代码。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

.NET Core(C#)中IEqualityComparer<T>接口的对象的主要作用是实现接口来判断两个对象是否相等,以下介绍一下 IEqualityComparerin T接口的简单介绍和实现使用的方法,以及相关示例代码。

 

1、IEqualityComparer<in T>的的GetHashCode和Equals方法

IEqualityComparer<in T>是用来比较对象是否相等,需要实现接口的public bool Equals()public int GetHashCode()方法, IEqualityComparer<T>接口的实现类主要用在Linq.Distinct<in T>()方法中。当进行比较的时候,先行运行GetHashCode()方法比较两个obj的HashCode(哈希值),如果obj的HashCode(哈希值)相同,再执行Equals()方法来比较。如果HashCode不同,则不执行Equals()

2、IEqualityComparer<in T>按口实现示例代码

1) 自定义Box对象添加到字典集合。如果Box对象的尺寸相同,则认为它们相等。

using System;
using System.Collections.Generic;
class Example
{
   static void Main()
   {
      BoxEqualityComparer boxEqC = new BoxEqualityComparer();
      var boxes = new Dictionary<Box, string>(boxEqC);
      var redBox = new Box(4, 3, 4);
      AddBox(boxes, redBox, "red");
      var blueBox = new Box(4, 3, 4);
      AddBox(boxes, blueBox, "blue");
      var greenBox = new Box(3, 4, 3);
      AddBox(boxes, greenBox, "green");
      Console.WriteLine();
      Console.WriteLine("The dictionary contains {0} Box objects.",
                        boxes.Count);
   }
   private static void AddBox(Dictionary<Box, String> dict, Box box, String name)
   {
      try {
         dict.Add(box, name);
      }
      catch (ArgumentException e) {
         Console.WriteLine("Unable to add {0}: {1}", box, e.Message);
      }
   }
}
public class Box
{
    public Box(int h,  int l, int w)
    {
        this.Height = h;
        this.Length = l;
        this.Width = w;
    }
    public int Height { get; set; }
    public int Length { get; set; }
    public int Width { get; set; }
    public override String ToString()
    {
       return String.Format("({0}, {1}, {2})", Height, Length, Width);
    }
}
class BoxEqualityComparer : IEqualityComparer<Box>
{
    public bool Equals(Box b1, Box b2)
    {
        if (b2 == null && b1 == null)
           return true;
        else if (b1 == null || b2 == null)
           return false;
        else if(b1.Height == b2.Height && b1.Length == b2.Length
                            && b1.Width == b2.Width)
            return true;
        else
            return false;
    }
    public int GetHashCode(Box bx)
    {
        int hCode = bx.Height ^ bx.Length ^ bx.Width;
        return hCode.GetHashCode();
    }
}

 输出如下:

 

Unable to add (4, 3, 4): An item with the same key has already been added.

The dictionary contains 2 Box objects.

 

相关文档:iequalitycomparer

2) 去除字典中key不同但value是相同对象的重复数据

public class CachedLookup<T, TKey>
{        
    private readonly ConcurrentDictionary<T, T> _hashSet;
    private readonly ConcurrentDictionary<TKey, List<T>> _lookup = new ConcurrentDictionary<TKey, List<T>>();
    public CachedLookup(ConcurrentDictionary<T, T> hashSet)
    {
        _hashSet = hashSet;
    }   
    public CachedLookup(IEqualityComparer<T> equalityComparer = default)
    {
        _hashSet = equalityComparer is null ? new ConcurrentDictionary<T, T>() : new ConcurrentDictionary<T, T>(equalityComparer);
    }
    public List<T> Get(TKey key) => _lookup.ContainsKey(key) ? _lookup[key] : null;
    public List<T> Get(TKey key, Func<TKey, List<T>> getData)
    {
        if (_lookup.ContainsKey(key))
            return _lookup[key];
        var result = DedupeAndCache(getData(key));
        _lookup.TryAdd(key, result);
        return result;
    }
    public async ValueTask<List<T>> GetAsync(TKey key, Func<TKey, Task<List<T>>> getData)
    {
        if (_lookup.ContainsKey(key))
            return _lookup[key];
        var result = DedupeAndCache(await getData(key));
        _lookup.TryAdd(key, result);
        return result;
    }
    public void Add(T value) => _hashSet.TryAdd(value, value);
    public List<T> AddOrUpdate(TKey key, List<T> data)
    {            
        var deduped = DedupeAndCache(data);
        _lookup.AddOrUpdate(key, deduped, (k,l)=>deduped);
        return deduped;
    }
    private List<T> DedupeAndCache(IEnumerable<T> input) => input.Select(v => _hashSet.GetOrAdd(v,v)).ToList();
}

 使用示例:

public class ExampleUsage
{
    private readonly CachedLookup<LanguageInfoModel, (string frontendId, string languageId, string accessId)> _lookup 
        = new CachedLookup<LanguageInfoModel, (string frontendId, string languageId, string accessId)>(new LanguageInfoModelComparer());
    public ValueTask<List<LanguageInfoModel>> GetLanguagesAsync(string frontendId, string languageId, string accessId)
    {
        return _lookup.GetAsync((frontendId, languageId, accessId), GetLanguagesFromDB(k));
    }
    private async Task<List<LanguageInfoModel>> GetLanguagesFromDB((string frontendId, string languageId, string accessId) key) => throw new NotImplementedException();
}
public class LanguageInfoModel
{
    public string FrontendId { get; set; }
    public string LanguageId { get; set; }
    public string AccessId { get; set; }
    public string SomeOtherUniqueValue { get; set; }
}
public class LanguageInfoModelComparer : IEqualityComparer<LanguageInfoModel>
{
    public bool Equals(LanguageInfoModel x, LanguageInfoModel y)
    {
        return (x?.FrontendId, x?.AccessId, x?.LanguageId, x?.SomeOtherUniqueValue)
            .Equals((y?.FrontendId, y?.AccessId, y?.LanguageId, y?.SomeOtherUniqueValue));
    }
    public int GetHashCode(LanguageInfoModel obj) => 
        (obj.FrontendId, obj.LanguageId, obj.AccessId, obj.SomeOtherUniqueValue).GetHashCode();
}

 相关文档:system.object.gethashcode文章来源地址https://www.toymoban.com/news/detail-488816.html

到了这里,关于.NET Core(C#) IEqualityComparer<in T>接口的使用方法及示例代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • asp.net core6 webapi 使用反射批量注入接口层和实现接口层的接口的类到ioc中

    IBLL接口层类库 BLL实现接口层类库 program中利用反射批量注入 在控制器中使用构造函数传参就可以调用已经注册的所有是是实现接口的类了的实列了

    2024年02月13日
    浏览(40)
  • mybatis中的mapper.xml中如何使用in方法

    提示:mapper.xml中如何使用in方法一般都是like或= 提示:使用foreach 注意,传入的参数是List ,如果传入的是array 则需要修改 collection部分定义为 collection=“array” 在MyBatis中使用in参数为集合时,需要使用到foreach标签。 下面详细介绍以下foreach标签的几个参数

    2024年02月15日
    浏览(42)
  • ADO.Net前端页面调用后台方法使用

    1、前台页面定义GetSource方法,传入列表显示字段; 2、后台页面定义Public公共类型的方法GetSource; 3、后台可以根据字段值判断列中需要显示的图标、数值;

    2024年02月01日
    浏览(43)
  • asp.net使用MailMessage发送邮件的方法

     控件名称及ID如下: 书写后台代码之前需要先了解MailMessage类中的各个属性:         From:发件人邮箱地址。 To:收件人的邮箱地址。     CC:抄送人邮箱地址。 Subject:邮件标题。 Body:邮件内容。        Attachments:邮件附件         此外MailMessage还需要用到Smtp

    2024年02月06日
    浏览(45)
  • .NET领域性能最好的对象映射框架Mapster使用方法

      Mapster是一个开源的.NET对象映射库,它提供了一种简单而强大的方式来处理对象之间的映射。在本文中,我将详细介绍如何在.NET中使用Mapster,并提供一些实例和源代码。 和其它框架性能对比:   Mapster的安装和配置: 首先,打开Visual Studio并创建一个新的.NET项目。 在NuGe

    2024年02月05日
    浏览(46)
  • .net下优秀的IOC容器框架Autofac的使用方法,实例解析

    Autofac是一个功能强大的依赖注入容器,它提供了一种简单和灵活的方式来管理对象之间的依赖关系。下面是Autofac的一些优点: 简单易用:Autofac提供了一种直观和简洁的方式来注册和解析依赖项。它的API设计得非常易于理解和使用,使得开发人员可以轻松地配置和管理依赖关

    2024年02月05日
    浏览(55)
  • .net下优秀的MQTT框架MQTTnet使用方法,物联网通讯必备

      MQTTnet 是一个高性能的MQTT类库,支持.NET Core和.NET Framework。 MQTTnet 原理: MQTTnet 是一个用于.NET的高性能MQTT类库,实现了MQTT协议的各个层级,包括连接、会话、发布/订阅、QoS(服务质量)等。其原理涉及以下关键概念: MqttClient:  MqttClient 是MQTTnet库中表示客户端的主要类

    2024年02月05日
    浏览(54)
  • .Net6使用halcon21.05的窗口错误解决方法

    使用平台:VS2022,框架:.net6; 图像处理:halcon21.05,显示窗口HSmartWindowControlWPF; 操作步骤: 新建WPF应用程序,框架选择.Net6; 在解决方案下方-依赖项,右键选择之后添加项目引用; 找到21.05版本的halcondotnet.DLL,确认添加; 切换到WPF界面,在XAML下面添加对halcondotnet的空间引

    2024年02月06日
    浏览(35)
  • 使用JMeter进行基本接口请求的实现方法

    本文介绍如何使用JMeter实现基本的接口请求,包括添加线程组、添加HTTP请求、设置参数、添加察看结果树等步骤。通过实例演示,展示如何调用百度安全验证接口并查看返回数据。

    2024年02月06日
    浏览(58)
  • 使用axios请求@DeleteMapping注解的接口的方法

    前端使用delete方法访问接口,后端使用@DeleteMapping注解,方法内使用@PathVariable接参,注意注解中的: /{id} 的用法 前端接口: axios.delete(‘http://127.0.0.1:8080/api/deleteUserById/’+id) .then(response = { // 处理成功响应 console.log(‘删除成功’, response); }) .catch(error = { // 处理错误响应 consol

    2024年02月15日
    浏览(37)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包