Coder Social home page Coder Social logo

Comments (3)

FunnyZ avatar FunnyZ commented on May 15, 2024 1

这个就涉及到事件循环(Event Loop)

JS运行时,对代码执行顺序的一个算法(任务调度算法)

JS 分类:同步任务和异步任务
JS 的执行机制:

  • 首先判断JS代码是同步还是异步,同步就进入主线程,异步就进入 event table
  • 异步任务在 event table 中注册函数,当满足触发条件后,被推入event queue
  • 同步任务进入主线程后一直执行,直到主线程空闲时,才回去 event queue 中查看是否有可执行的异步任务,如果有就推入主线程

event loop 里有维护两个不同的异步任务队列

  • macro Tasks(宏任务):script(整体代码), setTimeout, setInterval, setImmediate, I/O, UI rendering
  • micro Tasks(微任务):process.nextTick, Promise(浏览器实现的原生Promise), Object.observe, MutationObserver, MessageChannel

每次执行一段代码(一个script标签)都是一个 macroTask
执行流程:

  • event loop 开始
  • 从macro Tasks 队列抽取一个任务,执行
  • micro Tasks 清空队列执行,若有任务不可执行,推入下一轮 micro Tasks
  • 结束 event loop

浏览器执行代码的过程如下整个流程
image

那么回到题目上去,就是

setTimeout(function(){
    console.log(1);    // 1-放入宏任务队列,7-执行下一轮事件循环,宏任务输出1
},0); 

new Promise(function(resolve) { 
    console.log(2);    // 2-同步输出 2
    for(let i=0; i<10000 ; i++ ) { 
        i==9999 && resolve(); 
    } 
    console.log(3);    // 4-同步输出 3
}).then(function(){ 
    console.log(4);    // 3-放入微任务队列,6-回到微任务队列,执行剩余的微任务,输出4
}); 
console.log(5);    // 5-同步输出 5

from fe-interview.

hulkyuan avatar hulkyuan commented on May 15, 2024

看完你的解释,我理解是先执行宏任务,因为settimeout延迟是0,所以应该是先输出1,再输出4。但是实际结果却是4,1

from fe-interview.

artdong avatar artdong commented on May 15, 2024

看完你的解释,我理解是先执行宏任务,因为settimeout延迟是0,所以应该是先输出1,再输出4。但是实际结果却是4,1

1-放入宏任务队列,7-执行下一轮事件循环,宏任务输出1, 所以在最后输出。

from fe-interview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.