What is the difference between asynchronous and synchronous in javascript

青灯夜游
Release: 2023-01-06 11:17:08
Original
3295 people have browsed it

Difference: In synchronization, when a function call is issued, one thing must be done one by one, and the next thing cannot be done until the previous one is completed; while in asynchronous, when an asynchronous procedure call is issued, Finally, the caller can continue to perform subsequent operations before getting the result.

What is the difference between asynchronous and synchronous in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

The JavaScript language is a "single-threaded" language.

Unlike the Java language, the class inherits Thread and then uses thread.start to open a thread.

So, JavaScript is like an assembly line, just an assembly line, either processing or packaging, and cannot perform multiple tasks and processes at the same time.

"Synchronicity" - it immediately reminds people of the word "together";


"Asynchronous", literally speaking, seems to be in different (different) places. ways to do something,

The first word that comes to mind may be "while...while...", for example, 'Xiao Ming is eating ice cream while doing homework.' There is nothing wrong with that. After eating the ice cream, homework is done. I’ve finished writing it. Is this asynchronous? That would be a big mistake!


In fact, synchronous and asynchronous,

No matter what, there is only one pipeline (single thread) when doing things ,

The difference between synchronous and asynchronous is that the execution order of each process on this pipeline is different.

The most basic asynchronous is the setTimeout and setInterval functions,

are very common, but few people know that this is actually asynchronous,

because they can control js execution order. We can also simply understand it as:

Operations that can change the normal execution sequence of the program can be regarded as asynchronous operations. The following code:

    console.log( "1" );
    setTimeout(function() {
        console.log( "2" )
    }, 0 );
    setTimeout(function() {
        console.log( "3" )
    }, 0 );
    setTimeout(function() {
        console.log( "4" )
    }, 0 );
    console.log( "5" );
Copy after login

What is the output order?

What is the difference between asynchronous and synchronous in javascript

It can be seen that although we set the waiting time in setTimeout(function, time) to 0, the function in it is still executed later.

Although the time delay of setTimeout is 0,

the function will also be put into a queue, waiting for the next opportunity to execute,

The current code (referring to Programs that do not need to be added to the queue) must complete before the program in that queue is completed,

so the results may not be the same as expected.

Here we talk about a "queue" (i.e. task queue),

What is placed in this queue? What is placed is the function in setTimeout,

These functions are added to the queue in turn,

That is, the programs in all functions in the queue will be executed after all codes outside the queue have been executed.

This is why? Because when executing a program, the browser will default to methods such as setTimeout and ajax requests as time-consuming programs (although they may not be time-consuming).
Add them to a queue, which is a storage time-consuming process. A queue of programs. After all non-time-consuming programs are executed, the programs in the queue are executed in sequence.

Back to the original starting point-javascript is single-threaded. Single thread means that all tasks need to be queued, and the next task will not be executed until the previous task is completed.
If the previous task takes a long time, the next task will have to wait.

So there is a concept - task queue. If the queue is due to a large amount of calculation and the CPU is too busy, forget it.

But many times the CPU is idle because the IO device (input and output device) is very slow (for example, Ajax operations read from the network (get data), you have to wait for the results to come out before proceeding. So the designers of the JavaScript language realized that at this time, the main thread could completely ignore the IO device, suspend the waiting tasks, and run the later tasks first. Wait until the IO device returns the result, then go back and continue executing the suspended task.

So, all tasks can be divided into two types,

One is synchronous task (synchronous), the other is asynchronous task (asynchronous). Synchronous tasks refer to tasks that are queued for execution on the main thread.
The next task can only be executed after the previous task has been executed; asynchronous tasks refer to tasks that do not enter the main thread but enter the "task queue" (task queue). queue), only when the main thread task is completed and the "task queue" starts to notify the main thread and request the execution of the task, the task will enter the main thread for execution.

Specifically, the asynchronous running mechanism is as follows:


  • #All synchronous tasks are executed on the main thread, forming an execution context stack.

  • Besides the main thread, there is also a "task queue". As long as the asynchronous task has running results, an event is placed in the "task queue".

  • Once all synchronization tasks in the "execution stack" have been executed, the system will read the "task queue" to see what events are in it. Those corresponding asynchronous tasks end the waiting state, enter the execution stack, and start execution.

  • The main thread keeps repeating the third step above.


#As long as the main thread is empty, it will read the "task queue". This is the running mechanism of JavaScript. This process keeps repeating.

The events in the "task queue", in addition to the events of the IO device,

also include some events generated by the user (such as mouse clicks, page scrolling, etc.),

For example, $(selectot).click(function), these are relatively time-consuming operations.

As long as the callback functions of these events are specified, these events will enter the "task queue" when they occur, waiting for the main thread to read.

The so-called "callback function" (callback) is the code that will be hung up by the main thread. The function in the click event $(selectot).click(function) mentioned earlier is A callback function. Asynchronous tasks must specify a callback function. When the main thread starts executing an asynchronous task, the corresponding callback function is executed. For example, ajax's success, complete, and error also specify their own callback functions. These functions will be added to the "task queue" and wait for execution.

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of What is the difference between asynchronous and synchronous in javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!