这是我第一次在项目中尝试多个线程,所以请耐心等待。这个想法是这样的。我有一堆文件需要转换为pdf。我正在使用itextsharp为我做转换。迭代运行时,程序运行正常但速度很慢。
我有一个需要转换的项目列表。我把这个列表分成两个列表。
for (int i = 0; i < essaylist.Count / 2; i++)
{
frontessay.Add(essaylist[i]);
try
{
backessay.Add(essaylist[essaylist.Count - i]);
}
catch(Exception e)
{
}
}
if (essaylist.Count > 1)
{
var essay1 = new Essay();
Thread t1 = new Thread(() => essay1.StartThread(frontessay));
Thread t2 = new Thread(() => essay1.StartThread(backessay));
t1.Start();
t2.Start();
t1.Join();
t2.Join();
}
else
{
var essay1 = new Essay();
essay1.GenerateEssays(essaylist[1]);
}
然后我创建了2个运行此代码的线程
public void StartThread(List<Essay> essaylist)
{
var essay = new Essay();
List<System.Threading.Tasks.Task> tasklist = new List<System.Threading.Tasks.Task>();
int threadcount = 7;
Boolean threadcomplete = false;
int counter = 0;
for (int i = 0; i < essaylist.Count; i++)
{
essay = essaylist[i];
var task1 = System.Threading.Tasks.Task.Factory.StartNew(() => essay.GenerateEssays(essay));
tasklist.Add(task1);
counter++;
if (tasklist.Count % threadcount == 0)
{
tasklist.ForEach(t => t.Wait());
//counter = 0;
tasklist = new List<System.Threading.Tasks.Task>();
threadcomplete = true;
}
Thread.Sleep(100);
}
tasklist.ForEach(t => t.Wait());
Thread.Sleep(100);
}
对于大多数文件,代码按原样运行。但是,例如我有155件物品需要被包括在内。当程序结束并且我查看结果时,我有149个项目而不是155个。看起来结果类似于total = list - threadcount。在这种情况下它7.有关如何纠正这个的任何想法?我是否正确地执行线程/任务?
essay.GenerateEssays代码也是实际的itextsharp,它将信息从db转换为实际的pdf。
答案 0 :(得分:5)
如何使用TPL。您的所有代码似乎都可以替换为
Parallel.ForEach(essaylist, essay =>
{
YourAction(essay);
});