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

简述自己用过的几种异步调用方式

时间:2017-04-04 23:07:27      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:委托   system   code   test   执行   sync   new   color   不能   

直接上代码

1.BeginInvoke和EndInvoke方式

        private static void BeginInvoke1()
        {
            Func<int,string> fun = Todo;
            for (int i = 0; i < 5; i++)
            {
                //fun.BeginInvoke(i,TodoCallBack, fun);
                /*
                 异步调用委托BeginInvoke
                 * handler.EndInvoke(x)为执行委托的结果
                 */
                fun.BeginInvoke(i, x => {
                    Func<int, string> handler = x.AsyncState as Func<int, string>;
                    //str:为异步调用的返回值
                    string str=handler.EndInvoke(x);
                    Console.WriteLine(str);
                }, fun);
            }
        }

第二种Thread

        private static void Test(object i)
        {
            Console.WriteLine(i.ToString());
        }

        private static void Thread1()
        {
            //可以传入一个object值,不能接收返回值
            System.Threading.Thread t = new System.Threading.Thread(Test);
            t.Start(10);
        }

 

第三种:Task,这个是在.net4.0以后才出来的

private static void TaskFac()
        {
            //工厂属性的调用方式
            Task t = Task.Factory.StartNew(x => {
                Console.WriteLine("测试"+x);
            },"taskFac");
        }

        private static void TestTask()
        {
            //简单的调用方式
            Task t = new Task((x) => {
                Console.WriteLine("测试"+x);
            },"task");
            t.Start();
        }

 

简述自己用过的几种异步调用方式

标签:委托   system   code   test   执行   sync   new   color   不能   

原文地址:http://www.cnblogs.com/zhuyapeng/p/6666679.html

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