C# ConcurrentBag与list

Posted nashah

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# ConcurrentBag与list相关的知识,希望对你有一定的参考价值。

 

ConcurrentBag<T>与List<T>

我遇到的一个情况是:

using System.Collections.Concurrent;

class WX
{
public string wxNo;
public string wxPsw;
}

static public bool ReadWechatIds(string path,out ConcurrentBag<WX> list)
{
list = new ConcurrentBag<WX>();
string[] wechatlist = File.ReadAllLines(path);
string []seperator={"--"};
//WX wx = new WX();
foreach(string i in wechatlist)
{
string[] wechatid = i.Split(seperator,StringSplitOptions.RemoveEmptyEntries);
WX wx = new WX();
wx.wxNo = wechatid[0];
wx.wxPsw = wechatid[1];
list.Add(wx);
}
if (list!= null)
return true;
else
return false;
}

比如 wechalist里有100个不一样的数值,如果把注释掉的东西写到外面,会出现100个相同的数值

这是这种集合ConcurrentBag的特性

如果换成list<T>

static public bool ReadWechatIds1(string path, out List<WX> list)
{
list = new List<WX>();
string[] wechatlist = File.ReadAllLines(path);
string[] seperator = { "--" };
//WX wx = new WX();
foreach (string i in wechatlist)
{
string[] wechatid = i.Split(seperator, StringSplitOptions.RemoveEmptyEntries);
WX wx = new WX();
wx.wxNo = wechatid[0];
wx.wxPsw = wechatid[1];
list.Add(wx);
}
if (list != null)
return true;
else
return false;
}

wechalist里有100个不一样的数值,如果把注释掉的东西写到外面,会出现100个不同的数值

以上是关于C# ConcurrentBag与list的主要内容,如果未能解决你的问题,请参考以下文章

Parallel.For 和 ConcurrentBag 给出不可预测的行为

c# 并行运算

我可以在 ConcurrentBag 上使用普通的 foreach 吗?

如何避免 ConcurrentBag<T>.GetEnumerator() 上的争用

在C#中使用Threads和ConcurrentBag

为啥 ConcurrentBag<T> 在 .Net (4.0) 中这么慢?我做错了吗?