91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TypeScript之異步函數

發布時間:2020-07-03 07:46:13 來源:網絡 閱讀:9881 作者:Aonaufly 欄目:開發技術

必須搞清楚 setTimeout 為異步函數.
因為 : TS中沒有線程休眠 , 所以我提供了如下測試方式

一 : 正常

module demo{
    export class AsyncDemo{
        private _sentry : number = 0;
        public start() : void{
            this.getSomething("Aonaufly").then(
                $value=>{
                    egret.log(`執行成功 ! name : ${$value}`);
                },
                $error=>{
                    egret.log(`執行失敗 ! error : ${$error}`);
                }
            );
        }

        private timeout() : number{
            while( this._sentry == 0 ){
                if( this._sentry != 0 ){
                    break;
                }
            }
            return egret.setTimeout(
                this.handler_timeout,
                this,
                2500
            );
        }

        /**
         * 測試異步回調函數
         * @param {string} $name
         */
        private async getSomething( $name : string ) : Promise<string>{
            egret.log(`開始執行異步函數`);
            this._sentry = 1;
            const $id = await this.timeout();
            egret.log(`timeout 執行完畢! timeid : ${$id}`);
            return $name;
        }

        private handler_timeout() : void {
            egret.log(`執行了等待 2.5秒`);
        }

    }
}

結果 :
TypeScript之異步函數

解釋 : setTimeOut是異步的

二 :
TypeScript之異步函數

因為 : await 關鍵字 , 是等待 this.timeout()的結果 , 他是永遠等不到的 , 所以程序卡死

結果:
TypeScript之異步函數

這個和 C# 是一樣的 , 只不過C#好測試 , 因為C#有線程的概念!!!

其他補充 : https://blog.csdn.net/rcjjian/article/details/72831577

下面有三個使用到Prmomise的例子
第1個例子 使用 new Promise,體現了 promise實現異步機制
2和3 使用 Promise.resolve
第3個例子,通過 then 將 參數傳遞到下一個 then
將代碼復制 運行,就會看到 promise的奧秘

//new Promise() vs Promise.resolve()
//then 方法每次都會返回 promise實例對象

function newPromise_resolve() {
   return new Promise((resolve,reject) => {
      resolve(); //這里調resolve方法,則then方法會被調用
      console.log('resolve里面的log');
   })
   //先輸出 resolve里面的log
   //后輸出 then方法
   //這里很好地體現了 Promise實現了 node.js的異步機制
}

newPromise_resolve().then(() => {
   console.log('then方法');
});

newPromise_resolve();

//使用Promise.resolve
function promise_resolve() {
   let promise = Promise.resolve();
   promise
   .then(() => {
      console.log('promise_resolve1');
   })
   .then(() => {
      console.log('promise_resolve2');
   });

   return promise;
}

//promise_resolve(); 

function promise_forEach_then() {
   let ids = [1,2,3];
   let promise = Promise.resolve();
   ids.forEach((id) => {
      promise
      .then(() => {
         return {id}
      })
      .then(consoleLogId)
   });
}

function consoleLogId(id) {
   console.log('promise_forEach_then---' + id);
}

//promise_forEach_then();

///////////////////////////////////////

        public deatoryGroupRes( $groupName : string ) : Promise<boolean>{
            if( this._hashmap.containsKey( $groupName ) == true ){
                if( this._is_loading == true && $groupName == this._cur_group ){
                    return new Promise((resolve,reject) : void=>{
                        resolve(false);
                                                reject(false);
                    });
                }else{
                    this._hashmap.remove( $groupName );
                    return RES.destroyRes( $groupName );
                }
            }else{
                return RES.destroyRes( $groupName );
            }
        }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼玛县| 黄浦区| 锡林郭勒盟| 广灵县| 盐池县| 英吉沙县| 抚顺县| 泰来县| 高密市| 团风县| 白银市| 梁山县| 阿图什市| 台山市| 游戏| 荆门市| 杂多县| 兴义市| 绥滨县| 山东省| 罗定市| 刚察县| 逊克县| 武宁县| 梁河县| 旬邑县| 阿瓦提县| 泰顺县| 射阳县| 齐河县| 临海市| 三台县| 普格县| 邵东县| 通化县| 普兰店市| 大石桥市| 西宁市| 远安县| 唐海县| 红河县|