【笔记】JavaScript setTimgout new Promise 执行顺序

问题:以下代码console.log输出内容是什么?

setTimeout(function(){console.log(1)},0)

new Promise((resolve,reject)=>{

    console.log(2)

    for(let i =0;i<10;i++){

        if(i=== 6)console.log(6)

        i === 9 && resolve()

    }

    console.log(3)

}).then(()=>console.log(4))

console.log(5)


[if !supportLists]一、[endif]解题思路

[if !supportLists]1、[endif]执行步骤:

[if !supportLists]1)[endif]【循环一】这段代码作为宏任务,进入主线程;

[if !supportLists]2)[endif]【循环一】定时器后面的方法注册存入Event Table中;

[if !supportLists]3)[endif]【循环一】执行new Promise中的console.log(2);

[if !supportLists]4)[endif]【循环一】执行new Promise中的for循环方法并打印if 判断中的console.log(6);

[if !supportLists]5)[endif]【循环一】执行new Promise中的resolve then后面的代码被放入微任务Event Queue中;

[if !supportLists]6)[endif]【循环一】执行new Promise中的for循环方法中最后一个console.log(3);

[if !supportLists]7)[endif]【循环一】执行console.log(5);

[if !supportLists]8)[endif]【循环一】计时结束后(0秒),定时器里的方法存入宏任务Event Queue 中待执行,但是因为第4步的then方法占用了Event Queue,所以处于等待阶段;

[if !supportLists]9)[endif]【循环一】Event Quene微任务中的待执行代码执行:console.log(4);

[if !supportLists]10)[endif]第一轮事件循环结束,第二轮事件循环开始;

[if !supportLists]11)[endif]【循环二】then方法后的存入Event Queue 的待执行方法:console.log(1);


备注:循环一、循环二标识为线程执行事件循环

[if !supportLists]2、[endif]执行结果: 2    6

3

5

4

1



[if !supportLists]二、[endif]扩展知识及一些概念

[if !supportLists]1、[endif]关于javascript

Javascript是一门单线程语言,一切javascript版的"多线程"都是用单线程模拟出来的。

[if !supportLists]2、[endif]javascript事件循环

Javascript可以分为同步任务和异步任务。同步任务如页面骨架和页面元素的渲染。而加载图片音乐、后台数据请求之类占用资源大耗时久的任务,就是异步任务。(这部分有严格的文字定义,此处不赘述)



[if !supportLists]l [endif]同步和异步任务分别进入不同的执行区,同步的进入主线程,异步的进入Event Table并注册函数。

[if !supportLists]l [endif]当指定的事情完成时,Event Table会将这个函数移入Event Queue。

[if !supportLists]l [endif]主线程内的任务执行完毕为空,会去Event Queue读取对应的函数,进入主线程执行。

[if !supportLists]l [endif]上述过程会不断重复,也就是常说的Event Loop(事件循环)。

备注:js引擎存在monitoring process进程,会持续不断的检查主线程执行栈是否为空,如果为空,就会去Event Queue那里检查是否有等待被调用的函数。

[if !supportLists]3、[endif]setTimeout(fun(), 1000);延迟执行方法,即延迟时间结束就执行方法,但并不是延迟时间结束就执行的,因为在EventTable执行结束的时候,会去判断Event Queue 里是否有正在执行的代码,如果有则继续等待,所以延迟时间可能会超过预设时间。

[if !supportLists]4、[endif]setInterval(fn,ms);是n秒执行一次,每过ms秒,会有fn进入Event Queue。一旦setInterval的回调函数fn执行时间超过了延迟时间ms,就完全看不出有时间间隔了。

[if !supportLists]5、[endif]Promise与process.nextTick(callback)

Promise主要用于异步计算;process.nextTick(callback)类似node.js版的"setTimeout",在事件循环的下一次循环中调用 callback 回调函数。


事件循环

[if !supportLists]· [endif]macro-task(宏任务):包括整体代码script,setTimeout,setInterval

[if !supportLists]· [endif]micro-task(微任务):Promise,process.nextTick

不同类型的任务会进入对应的Event Queue,比如setTimeout和setInterval会进入相同的Event Queue。

事件循环的顺序,决定js代码的执行顺序。进入整体代码(宏任务)后,开始第一次循环。接着执行所有的微任务。然后再次从宏任务开始,找到其中一个任务队列执行完毕,再执行所有的微任务。

[if !supportLists]6、[endif]javascript的执行和运行

执行和运行有很大的区别,javascript在不同的环境下,比如node,浏览器,Ringo等等,执行方式是不同的。而运行大多指javascript解析引擎,是统一的。

[if !supportLists]7、[endif]事件循环Event Loop

事件循环是js实现异步的一种方法,也是js的执行机制。

[if !supportLists]8、[endif]setImmediate

微任务和宏任务还有很多种类,比如setImmediate等等,执行都是有共同点的,有兴趣的同学可以自行了解。

你可能感兴趣的:(【笔记】JavaScript setTimgout new Promise 执行顺序)