c#对象集合去重_C# List 根据对象属性去重的四种方法对比

标签:对象属性   public   ==   res   bar   测试数据   rac   return   invoke

private void TestDistinct()

{

Task.Run(() =>

{

//生成测试数据

DateTime dt = DateTime.Now;

Random rnd = new Random();

Listlist = new List();

int total = 1000000;

for (int i = 0; i result1 = new Dictionary();

foreach (MyData item in list)

{

MyData temp;

if (!result1.TryGetValue(item.name, out temp))

{

result1.Add(item.name, item);

}

}

Listr1 = result1.Values.ToList();

double d1 = DateTime.Now.Subtract(dt1).TotalMilliseconds;

//方法二

DateTime dt2 = DateTime.Now;

Listresult2 = list.ToLookup(item => item.name).ToDictionary(item => item.Key, item => item.First()).Values.ToList();

double d2 = DateTime.Now.Subtract(dt2).TotalMilliseconds;

//方法三

DateTime dt3 = DateTime.Now;

Listresult3 = list.Distinct(new MyCompare()).ToList();

double d3 = DateTime.Now.Subtract(dt3).TotalMilliseconds;

//方法四

DateTime dt4 = DateTime.Now;

Listresult4 = list.GroupBy(item => item.name).Select(item => item.First()).ToList();

double d4 = DateTime.Now.Subtract(dt4).TotalMilliseconds;

this.BeginInvoke(new Action(() =>

{

textBox1.Text = "";

textBox1.Text += "生成 " + list.Count.ToString("# ####") + " 条测试数据耗时:" + d + "毫秒\r\n\r\n";

textBox1.Text += "使用方法一去重耗时:" + d1 + "毫秒\r\n\r\n";

textBox1.Text += "使用ToLookup和ToDictionary去重耗时:" + d2 + "毫秒\r\n\r\n";

textBox1.Text += "使用Distinct去重耗时:" + d3 + "毫秒\r\n\r\n";

textBox1.Text += "使用GroupBy和Select去重耗时:" + d4 + "毫秒\r\n\r\n";

textBox1.Text += "去重后数量:" + r1.Count + "," + result2.Count + "," + result3.Count + "," + result4.Count + "" + "\r\n\r\n";

}));

});

}

fz.gif

fz.gif

public class MyData

{

public string id { get; set; }

public string name { get; set; }

}

public class MyCompare : IEqualityComparer{

public bool Equals(MyData x, MyData y)

{

return x.name == y.name;

}

public int GetHashCode(MyData obj)

{

return obj.name.GetHashCode();

}

}

fz.gif

测试结果:

20191219132007711912.png

C# List 根据对象属性去重的四种方法对比

标签:对象属性   public   ==   res   bar   测试数据   rac   return   invoke

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值