.net-去重的几种情况

文章目录

  • 前言
      • [1. int 类型的list 去重](#1. int 类型的list 去重)
      • [2. string类型的 list 去重](#2. string类型的 list 去重)
      • [3. T泛型 List去重](#3. T泛型 List去重)
      • [4. 使用HashSet List去重](#4. 使用HashSet List去重)
      • [5. 创建静态扩展方法](#5. 创建静态扩展方法)
  • 总结

前言

.net 去重的几种情况


1. int 类型的list 去重

js 复制代码
//  List<int> 
  List<int> myList = new List<int>(){ 100 , 200 ,100 ,300};
        myList  = myList.Distinct().ToList();
        foreach (var item in myList)
        {
            Console.WriteLine(item); // 100 200 300
        }

2. string类型的 list 去重

js 复制代码
 List<string> myList = new List<string>(){ "100" , "200" ,"300" ,"300"};
        myList  = myList.Distinct().ToList();
        foreach (var item in myList)
        {
            Console.WriteLine(item);
        }

3. T泛型 List去重

js 复制代码
 public class User
 {
   public int Id { get; set; }
   public string Name { get; set; }
   public int Age { get; set;}
 }

 List<User> myList1= new List<User>() 
 { 
    new User() { Id = 1, Name = "张三", Age = 11 } ,
    new User() { Id = 1, Name = "张三", Age = 11} ,
    new User() { Id = 3, Name = "李四", Age = 13 } ,
 };
 // groupBy 方式
 myList1= myList1.GroupBy(p => p.Id).Select(q => q.First()).ToList();
 foreach (var item in myList1)
 {
   Console.WriteLine("Id:" + item.Id + ", Name:" + item.Name + ", Age:" + item.Age);
 }
 
 //  key 方式如下图
 var myList2 = (from p in myList1
              group p by new { p.Id, p.Name, p.Age } into g
              select g).ToList();
 foreach (var item in myList2 )
 {
    Console.WriteLine("Id:" + item.Key.Id + ", Name:" + item.Key.Name + ", Age:" + item.Key.Age);
 }

4. 使用HashSet List去重

js 复制代码
List<int> list = new List<int> { 1, 2, 2, 3, 4, 4, 5 };
        HashSet<int> set = new HashSet<int>(list);
        List<int> distinctList = set.ToList();

5. 创建静态扩展方法

js 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var people = new List<Person>
            {
                new Person {Id=1,Name="Curry",Age=26 },
                new Person {Id=1,Name="Curry",Age=26 },
                new Person {Id=3,Name="James",Age=27 },
                new Person {Id=4,Name="Kobe",Age=38 }
            };
            var distinctPeople = people.DistinctBy(x => x.Name).ToList();
            distinctPeople.ForEach(x =>
            Console.WriteLine($"Id:{x.Id},Name:{x.Name},Age:{x.Age}")
            );
            Console.ReadKey();
        }
    }
 
    public class Person
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int Age { get; set; }
    }
    // 创建静态扩展方法
    public static class DistinctHelper
    {
        public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
        {
            var identifiedKeys = new HashSet<TKey>();
            return source.Where(element => identifiedKeys.Add(keySelector(element)));
        }
    }
}

总结

本文探讨了在.net 几种常用类型数组的去重方式,关键用到 Distinct(),GroupBy(), HashSet。

参考:

https://blog.csdn.net/laizhixue/article/details/89228355

相关推荐
Mast Sail10 小时前
windows下authas调试tomcat
java·windows·tomcat·authas
Kookoos10 小时前
Redis + ABP vNext 构建分布式高可用缓存架构
redis·分布式·缓存·架构·c#·.net
疯狂的挖掘机11 小时前
记一次从windows连接远程Linux系统来控制设备采集数据方法
linux·运维·windows
前进的程序员12 小时前
C++ 在 Windows 和 Linux 平台上的开发差异及常见问题
linux·c++·windows
小乖兽技术14 小时前
在 .NET 8 开发的WinForms 程序中展示程序版本号的几种方式
开发语言·c#·.net
大笨象、小笨熊14 小时前
【Win32 API】 lstrcpyA()
windows
双叶83615 小时前
(C语言)超市管理系统 (正式版)(指针)(数据结构)(清屏操作)(文件读写)
c语言·开发语言·数据结构·c++·windows
繁星无法超越15 小时前
详解Windows(九)——系统性能优化
windows·stm32·性能优化
IT小郭.15 小时前
使用 Docker Desktop 安装 Neo4j 知识图谱
windows·python·sql·docker·知识图谱·database·neo4j
qh0526wy16 小时前
金融接口基方法Python
windows·python·金融