简述自己用过的几种异步调用方式
Posted zhuyapeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简述自己用过的几种异步调用方式相关的知识,希望对你有一定的参考价值。
直接上代码
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(); }
以上是关于简述自己用过的几种异步调用方式的主要内容,如果未能解决你的问题,请参考以下文章