C# -- 使用Parallel并行执行任务


C#:使用Parallel并行执行任务

1. 代码实现

 1     class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             TestParallel();
 6             Console.ReadKey();
 7         }
 8 
 9         static void TestParallel()
10         {
11             List<Action> listTask = new List<Action>();
12             for (int i = 0; i < 5; i++)
13             {
14                 listTask.Add(new Action(TestAction));
15             }
16             Parallel.For(0, listTask.Count, new Action<int>(i => listTask[i].Invoke()));
17 
18         }
19 
20         static void TestAction()
21         {
22             string gid = Guid.NewGuid().ToString();
23             Console.WriteLine("当前线程ID:{0},线程启动....GID:{1}", Thread.CurrentThread.ManagedThreadId, gid);
24             Thread.Sleep(1000);
25             Console.WriteLine("当前线程ID:{0},线程结束<<<<....GID:{1}", Thread.CurrentThread.ManagedThreadId, gid);
26         }
27 
28     }

2. 运行结果:

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM