Parallel task in C# 4.0

来源:互联网 发布:网上名片制作软件 编辑:程序博客网 时间:2024/05/16 06:01

来源:http://www.dotnetjalps.com/2012/12/Parallel-task-with-task-parallel-library-in-Csharp.html

In today’s computing world  is all about Parallel processing. You have multicore CPU where you have different core doing different work parallel or its doing same task parallel. For example I am having 4-core CPU as follows. So the code that I write should take care of this. C# does provide that kind of facility to write code for multi core CPU with task parallel library. We will explore that in this post.


Now Let’s write a program that will have some will have some CPU intensive code that will take some time to complete work.  First we will use normal way of calling this task and measure the time and then we will use Task Parallel library feature of C# 4.0. Following is a code for that.

using System;using System.Threading;using System.Diagnostics; namespaceParrallelTask{    classProgram    {        staticvoid Main(string[] args)        {            Stopwatch stopWatch =new Stopwatch();            stopWatch.Start();            DoSomeWork();            DoSomework2();            stopWatch.Stop();            Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);        }         publicstatic voidDoSomeWork()        {            Thread.Sleep(1000);            Console.WriteLine("Work completed");        }        publicstatic voidDoSomework2()        {            Thread.Sleep(1000);            Console.WriteLine("Work completed2");        }     }}
As you can see in above code that we have two cpu intensive method DoSomeWork and DoSomeWork2 and we have called it one by one. Now let’s run the console application.



Here you can see that it has taken almost 2 seconds to complete this task. To use parallel task library we have to useSystem.Threading.Tasks name space. So I have changed the above code like following to get advantage of Parallel Task.

using System;using System.Threading;using System.Diagnostics;using System.Threading.Tasks;  namespaceParrallelTask{    classProgram    {        staticvoid Main(string[] args)        {            Stopwatch stopWatch =new Stopwatch();            stopWatch.Start();            Parallel.Invoke(                  newAction(DoSomeWork),                  newAction(DoSomework2)                );            stopWatch.Stop();            Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);        }         publicstatic voidDoSomeWork()        {            Thread.Sleep(1000);            Console.WriteLine("Work completed");        }        publicstatic voidDoSomework2()        {            Thread.Sleep(1000);            Console.WriteLine("Work completed2");        }     }}
So here you can see I have invoked two CPU consuming task parallel invoke and usedaction delegate to call that. Now let’s run that and see how much time it will take.


Here you can see it has taken 1 second to complete same task as it has completed this tasks parallel. Hope you like it. Stay tuned for more.


-------------------备注--------------------

执行并行任务也可以用Task,与Paralle.Invoke的区别是,Task创建的任务是异步执行,不等待任务执行完毕就返回的,例如下面执行后显示Time consumed: 00:00:00.0008202。
Stopwatch stopWatch =new Stopwatch();  
stopWatch.Start();
Task t = new Task(DoSomeWork);
t.Start();
Task.Factory.StartNew(DoSomework2);   
stopWatch.Stop();  
Console.WriteLine("Time consumed: {0}", stopWatch.Elapsed);  

Task的返回类型代码:
Task<int> t = new Task<int>(DoSomeWork);
int result = t.Result;
//......
public int DoSomeWork()
{            
   return 10;          
}

原创粉丝点击