async 和 await 之异步编程的学习
生活随笔
收集整理的這篇文章主要介紹了
async 和 await 之异步编程的学习
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
????? async修改一個方法,表示其為異步方法。而await表示等待一個異步任務的執行。js方面,在es7中開始得以支持;而.net在c#5.0開始支持。本文章將分別簡單介紹他們在js和.net中的基本用法。
一、在js中的實現
js中的異步,還是基于Promise實現的。沒有Promise就辦法談異步了。并且await只能出現async修改的方法中;以及reject會觸發catch(異常)。
class AsyncTest{//simple example async run(){//按照順序等待后輸出let one = await this.output("one", 1000);console.log('output:' one);let two = await this.output("two", 3000);console.log(two);console.log('run.....');}//await and Promise.all difference async runDiff(){ let one = this.output('diff one', 2000);let two = this.output('diff two', 2000);console.log( await two await one ); //在2秒之后,兩個都輸出了,而不是各自都等待兩秒console.log('runDiff.....');}//Promise.all realize runAll(){let nowTime = new Date();console.log('b:' nowTime.toTimeString());let array = ["a", "b", "c"];let that = this;array.forEach(async function(item){console.log( await that.output(item, 2000) );//2秒后同時輸出 });let fn = async ()=>{for(let item of array){let v = await this.output(item, 2000);console.log(v ); //分步驟兩秒執行 }}fn.call(this);}premosFn(){let nowTime = new Date();console.log('b:' nowTime.toTimeString());let array = ["a", "b", "c"];let that = this;//promise.alllet preFn = async function(){let promises = array.map(function(item){return that.output(item,2000); //同時開啟多個定時器 });let r = await Promise.all(promises);console.log(r.join(','));}preFn();}reject(){let rejectFn = function(){return new Promise((resolve, reject)=>{setTimeout(()=>{reject();},2000);});}let asyncReject = async function(){try{await rejectFn();}catch( e) {console.log('reject.....');}}asyncReject();}output(log, time){return new Promise(resolve=>{setTimeout(()=>{var nowTime = new Date();resolve( nowTime.toTimeString() ":" log "\r\n");}, time);});} }方法說明如下:
- output:簡單的輸出方法,但返回了一Promise。
- run: 使用await來等待兩次對output的執行
- runDiff:調用output時即創建promise。兩個promise會同步執行
- runAll:多任務同步執行和按步驟執行的實現方法。也就是forEach和for方法體中使用await的區別
- premosFn: promise.all的使用。
- reject: promise的reject會觸發await的異常。
二、在c#中的實現
C#中異常是通過Task來實現的,所以標記了async的方法,其方法體中都可以出現await,否則不可以。以及Task中拋出的異常,如果沒有同步等待,則不能獲取異常
public class AsyncDemo {private Task<string> Output(string val, int time){return System.Threading.Tasks.Task.Run(() =>{System.Threading.Thread.Sleep(time * 1000);return (DateTime.Now.ToLongTimeString()) ": " val "\r\n";});}public async System.Threading.Tasks.Task Run(){string oneVal = await Output("One", 2);string twoVal = await Output("Two", 2);System.Console.WriteLine("Run \r\n" oneVal " " twoVal);}public async System.Threading.Tasks.Task RunDiff(){Task<string> oneTask = Output("one", 2);Task<string> twoTask = Output("two", 2);string val = await oneTask await twoTask; System.Console.WriteLine("RunDiff \r\n" val);}public async System.Threading.Tasks.Task RunAll(){System.Console.WriteLine("b:" (DateTime.Now.ToLongTimeString()));string[] array = new string[3] { "a", "b", "c" };foreach(var item in array){string v = await Output(item, 2);System.Console.WriteLine(v);}}public async System.Threading.Tasks.Task PromiseFn(){System.Console.WriteLine("b:" (DateTime.Now.ToLongTimeString()));string[] array = new string[3] { "a", "b", "c" };List<System.Threading.Tasks.Task<string>> tasks = new List<System.Threading.Tasks.Task<string>>();foreach (var item in array){tasks.Add(Output(item, 2));}//waitAll返回值不能獲取,他返回為void,而WhenAll則返回為一個Task(這個Task就有其列表值)string[] r = await System.Threading.Tasks.Task.WhenAll(tasks.ToArray());System.Console.WriteLine(string.Join(",",r));}public async System.Threading.Tasks.Task Reject(){Func<System.Threading.Tasks.Task> func = async () =>{throw new Exception("custom...");await Output("reject", 2);};await func();} }調用代碼如下:
AsyncDemo asyncDemo = new AsyncDemo(); asyncDemo.Run().Wait(); asyncDemo.RunDiff().Wait(); asyncDemo.RunAll().Wait(); asyncDemo.PromiseFn().Wait(); try {asyncDemo.Reject().Wait(); }catch(Exception e) {System.Console.WriteLine("reject ex"); }??? 上述代碼就是Js的async和await在c#中的翻版實現。 其中每個異步方法的調用,都用到了Wait方法來進行同步等待。以獲取到結果。而沒有像Js中那么難以控制。尤其注意,async方法中異常的捕獲。
三、兩者的異同點
- js中的async方法的調用,是沒有wait方法來等待結果的執行的,只能通過promise來監聽執行結果
- c#中的async方法,由于推薦返回Task或者Task<T>,所以可以用Wait來等待執行結果,如果async方法返回為void,則與js類似。 C#中的下面示例方法的調用者捕獲不了異常:
public async void Run() {string oneVal = await Output("One", 2);string twoVal = await Output("Two", 2);System.Console.WriteLine("Run" oneVal " " twoVal); } - c#中的Task可以異步方法的鏈式調用,即可將前一任務的執行結果作為第二任務的參數傳入,當然js的Promise也完全是可以很輕松的實現:
更多專業前端知識,請上 【猿2048】www.mk2048.com
總結
以上是生活随笔為你收集整理的async 和 await 之异步编程的学习的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: vue命令行错误处理
- 下一篇: 中后端管理系统前后分离、前端框架的实现拙