Detailed explanation of closures in JavaScript
What is closure
In JavaScript, closure is a concept that is difficult to understand. The definition of closure in ECMAScript is: closure refers to the lexical representation of a function that includes variables that are not calculated. In other words, the function can use variables defined outside the function.
Do you feel more confused after reading this definition? Don't worry, let's analyze it.
A closure is a function
A closure can use variables defined outside it
The closure exists in the scope in which the variable is defined.
It seems a little clearer, but what does it mean to use variables defined outside it? Let’s first look at the variable scope.
Variable scope
Variables can be divided into global variables and local variables. The scope of global variables is global, and global variables can be used anywhere in js. Use the var keyword to declare a variable in a function. The variable at this time is a local variable. Its scope is only within the function where the variable is declared, and the variable cannot be accessed outside the function.
var func = function(){ var a = 'linxin'; console.log(a); // linxin}func();console.log(a); // Uncaught ReferenceError: a is not defined
Scope is relatively simple. We won’t go into details. Let’s take a look at the variable life cycle, which is closely related to closures.
Variable life cycle
Global variables, the life cycle is permanent. Local variables, when the function call that defines the variable ends, the variable will be recycled and destroyed by the garbage collection mechanism. When the function is called again, a new variable will be redefined.
var func = function(){ var a = 'linxin'; console.log(a);}func();
a is a local variable. After func is called, a will be destroyed.
var func = function(){ var a = 'linxin'; var func1 = function(){ a += ' a'; console.log(a); } return func1;}var func2 = func();func2(); // linxin afunc2(); // linxin a afunc2(); // linxin a a a
It can be seen that after the first call to func2, the variable a in func becomes 'linxin a' without being destroyed. Because func1 forms a closure at this time, the life cycle of a continues.
Now the closure is clearer.
A closure is a function, such as the func1 function above
A closure uses variables defined by other functions to prevent them from being destroyed. For example, func1 above calls the variable a
. The closure exists in the scope where the variable is defined, and the variable a exists in the scope of func, then func1 must also exist in this scope.
Now we can say that closure is the one that satisfies these three conditions.
Let’s get more familiar with closures through a simple and classic example.
for (var i = 0; i < 4; i++) { setTimeout(function () { console.log(i) }, 0) }
We may simply think that the console will print out 0 1 2 3, but in fact it prints out 4 4 4 4. Why is this? We found that the setTimeout function is asynchronous. By the time the function is executed, the for loop has ended. The value of i at this time is 4, so function() { console.log(i) } looks for variable i and can only get 4.
We remember that in the previous example, the closure saved the value of the a variable, so here we can also use the closure to save 0 1 2 3.
for (var i = 0; i < 4; i++) { (function (i) { setTimeout(function () { console.log(i) }, 0) })(i) }
When i=0, pass 0 as a parameter into the anonymous function. At this time, function(i){} the value of i in this anonymous function is 0 , wait until setTimeout is executed and follow the outer layer to find i, then you can get 0. By repeating this cycle, you can get the desired 0 1 2 3.
Memory Management
Calling a local variable in a closure will prevent the local variable from being destroyed in time, which is equivalent to the global variable that will always occupy memory. If you need to reclaim the memory occupied by these variables, you can manually set the variables to null.
However, in the process of using closures, it is easier to form circular references between JavaScript objects and DOM objects, which may cause memory leaks. This is because in the browser's garbage collection mechanism, if a circular reference is formed between two objects, then they cannot be recycled.
function func() { var test = document.getElementById('test'); test.onclick = function () { console.log('hello world'); } }
In the above example, a closure is created using an anonymous function in the func function. The variable test is a JavaScript object that refers to the DOM object with the id of test. The onclick attribute of the DOM object refers to the closure, and the closure can call test, thus forming a circular reference, causing both objects to be unable to be recycled. To solve this problem, just set the variable in the circular reference to null.
function func() { var test = document.getElementById('test'); test.onclick = function () { console.log('hello world'); } test = null;}
If you do not use an anonymous function to create a closure in the func function, but refer to an external function, there will be no circular reference problem.
function func() { var test = document.getElementById('test'); test.onclick = funcTest;}function funcTest(){ console.log('hello world'); }
The above is the detailed content of Detailed explanation of closures in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

In C++, a closure is a lambda expression that can access external variables. To create a closure, capture the outer variable in the lambda expression. Closures provide advantages such as reusability, information hiding, and delayed evaluation. They are useful in real-world situations such as event handlers, where the closure can still access the outer variables even if they are destroyed.

C++ Lambda expressions support closures, which save function scope variables and make them accessible to functions. The syntax is [capture-list](parameters)->return-type{function-body}. capture-list defines the variables to capture. You can use [=] to capture all local variables by value, [&] to capture all local variables by reference, or [variable1, variable2,...] to capture specific variables. Lambda expressions can only access captured variables but cannot modify the original value.

A closure is a nested function that can access variables in the scope of the outer function. Its advantages include data encapsulation, state retention, and flexibility. Disadvantages include memory consumption, performance impact, and debugging complexity. Additionally, closures can create anonymous functions and pass them to other functions as callbacks or arguments.

The impact of function pointers and closures on Go performance is as follows: Function pointers: Slightly slower than direct calls, but improves readability and reusability. Closures: Typically slower, but encapsulate data and behavior. Practical case: Function pointers can optimize sorting algorithms, and closures can create event handlers, but they will bring performance losses.

The relationship between js and vue: 1. JS as the cornerstone of Web development; 2. The rise of Vue.js as a front-end framework; 3. The complementary relationship between JS and Vue; 4. The practical application of JS and Vue.

Closures in Java allow inner functions to access outer scope variables even if the outer function has exited. Implemented through anonymous inner classes, the inner class holds a reference to the outer class and keeps the outer variables active. Closures increase code flexibility, but you need to be aware of the risk of memory leaks because references to external variables by anonymous inner classes keep those variables alive.

Yes, code simplicity and readability can be optimized through chained calls and closures: chained calls link function calls into a fluent interface. Closures create reusable blocks of code and access variables outside functions.
