码迷,mamicode.com
首页 > 其他好文 > 详细

异步测试

时间:2018-08-03 14:16:17      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:异步   array   color   console   line   span   art   int   oar   

 1   List< long> list = new List<long>();
 2             List<Task> tList = new List<Task>();
 3             tList.Add(Task.Factory.StartNew(() =>
 4             {
 5                 for (int i = 0; i < 100; i++)
 6                 {
 7                     list.Add(Snowflake.Instance().GetId());
 8                 }
 9             })); tList.Add(Task.Factory.StartNew(() =>
10             {
11                 for (int i = 0; i < 100; i++)
12                 {
13                     list.Add(Snowflake.Instance().GetId());
14                 }
15             }));
16 
17             Task.WaitAll(tList.ToArray());
18             list.ForEach(p => Console.WriteLine(p));

 

异步测试

标签:异步   array   color   console   line   span   art   int   oar   

原文地址:https://www.cnblogs.com/lsgControl/p/9412994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!