Task——任务可以启动子任务

作者:追风剑情 发布于:2017-10-13 21:22 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace TaskTest3
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. //任务支持父/子关系
  14. Task<Int32[]> parent = new Task<Int32[]>(() =>
  15. {
  16. // 创建一个数组来存储结果
  17. var results = new Int32[3];
  18.  
  19. // 这个任务创建并启动3个子任务
  20. // 不指定创建选项,默认创建的是顶级任务(即,与创建它们的任务无关)
  21. // AttachedToParent将一个Task和创建它的Task关联,结果是除非所有子任务(以及子任务的子任务)
  22. // 结束运行,否则创建任务(父任务)不认为已经结束。
  23. // 调用ContinueWith方法创建Task时,可指定TaskCreationOptions.AttachedToParent标志将延续任务指定成子任务。
  24. new Task(() => results[0] = Sum(10000), TaskCreationOptions.AttachedToParent).Start();
  25. new Task(() => results[1] = Sum(20000), TaskCreationOptions.AttachedToParent).Start();
  26. new Task(() => results[2] = Sum(30000), TaskCreationOptions.AttachedToParent).Start();
  27.  
  28. // 返回对数组的引用(即使数组元素可能还没有初始化)
  29. return results;
  30. });
  31.  
  32. // 父任务及其子任务运行完成后,用一个延续任务显示结果
  33. var cwt = parent.ContinueWith(parentTask => Array.ForEach(parentTask.Result, Console.WriteLine));
  34.  
  35. // 启动父任务,便于它启动它的子任务
  36. parent.Start();
  37.  
  38. Console.ReadLine();
  39. }
  40.  
  41. private static Int32 Sum(Int32 n)
  42. {
  43. Int32 sum = 0;
  44. for (; n > 0; n--)
  45. checked { sum += n; }
  46. return sum;
  47. }
  48. }
  49. }

运行测试

111111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号