Understanding closure in Javascript

后端 未结 8 659
不思量自难忘°
不思量自难忘° 2020-12-28 23:19

I\'m trying to wrap my head around closures in Javascript.

Here is an example from a tutorial:

function greeter(name, age) {
  var message = name + \         


        
相关标签:
8条回答
  • 2020-12-28 23:37
    //Lets start with a basic Javascript snippet
    function generateCash() {
        var denomination = [];
        for (var i = 10; i < 40; i += 10) {
            denomination.push(i);
        }
        return denomination;
    }
    

    This a basic function statement in Javascript that returns an array of [10,20,30]

    //--Lets go  a step further
    
    function generateCash() {
        var denomination = [];
        for (var i = 10; i < 40; i += 10) {
            denomination.push(console.log(i));
        }
        return denomination;
    }
    

    This will print 10, 20 ,30 sequentialy as the loop iterates, but will return an array of [undefined, undefined, undefined], the major reason being we are not pushing the actual value of i, we are just printing it out, hence on every iteration the javascript engine will set it to undefined.

    //--Lets dive into closures
    
    function generateCash() {
        var denomination = [];
        for (var i = 10; i < 40; i += 10) {
            denomination.push(function() {
                console.log(i)
            });
        }
        return denomination;
    }
    
    var dn = generateCash();
    console.log(dn[0]());
    console.log(dn[1]());
    console.log(dn[2]());
    

    This is a little tricky, what do you expect the output will be, will it be [10,20,30]? The answers is no, Lets see how this happens. First a Global execution context is created when we create dn, also we have the generatecash() function. Now we see that as the for loop iterates, it creates three anonymous function objects, it might be tempting to think that the console.log within the push function is getting fired too, but in reality it is not. We haved invoked generateCash(), so the push function is just creating three anonymous function objects, it does not trigger the function. At the end of the iteration, the current local context is popped from the execution stack and it leaves the state of i : 40 and arr:[functionobj0(), functionob1(), functionobj2()].

    So when we start executing the last three statements, all of them output 40, since it is not able to get the value of i from the current scope, it goes up the scope chain and finds that the value of i has been set to 40. The reason all of them will fire 40 is beacause every single component of dn lies in the same execution context and all of them on being not able to find the value of i in their current scope will go up the scope chain and find i set as 40 and output it respectively

    0 讨论(0)
  • 2020-12-28 23:38

    A better example may be

    function add(start, increment) {
      return function() {
          return start += increment;
      }
    }
    
    var add1 = add(10, 1);
    
    alert(add1()); // 11
    alert(add1()); // 12
    

    Here, every time you call the returned function, you add 1. The internals are encapsulated.

    The returned function still has access to its parents variables (in this case, start and increment).

    On a lower level of thinking, I think it means that the function's stack is not destroyed when it returns.

    0 讨论(0)
  • 2020-12-28 23:39

    Once you "get it" you will wonder why it took you so long to understand it. That's the way way I felt anyways.

    I think function scope in Javascript can be expressed fairly concisely.

    The function body will have access to any variables that were visible in the lexical environment of the function declaration, and also any variables created via the function's invocation -- that is, any variables declared locally, passed through as arguments or otherwise provided by the language (such as this or arguments).

    0 讨论(0)
  • 2020-12-28 23:43

    I found this a pretty helpful article.

    When is a function not a function?

    0 讨论(0)
  • 2020-12-28 23:44

    It's called "closures" because they are "closed" around free variables, and there are much more ways to use it then only hiding state. For example, in functional programming, where closures came from, they are often used to reduce parameters number or set some constant for a function. Let's say you need function goodEnough() that will test if some result is better then some threshold. You can use function of 2 variables - result and threshold. But you can also "enclose" your constant inside function:

    function makeThresholdFunction(threshold) {
        return function(param) {
            return (param > threshold);
        }
    
    }
    
    var goodEnough = makeThresholdFunction(0.5);
    ...
    if (goodEnough(calculatedPrecision)) {
       ...
    }
    

    With closures you can also use all the tricks with functions such as their composition:

    function compose(f1, f2) {
        return function(arg) {
            return f1(f2(arg));
        }
    }
    
    var squareIncremented = compose(square, inc);
    squareIncremented(5); // 36
    

    More on closure design and usage can be found at SICP.

    0 讨论(0)
  • 2020-12-28 23:57

    A closure is a pair of a function and the environment in which it was defined (assuming lexical scoping, which JavaScript uses). Thus, a closure's function can access variables in its environment; if no other function has access to that environment, then all of the variables in it are effectively private and only accessible through the closure's function.

    The example you provided demonstrates this reasonably well. I've added inline comments to explain the environments.

    // Outside, we begin in the global environment.
    function greeter(name, age) {
      // When greeter is *invoked* and we're running the code here, a new
      // environment is created. Within this environment, the function's arguments
      // are bound to the variables `name' and `age'.
    
      // Within this environment, another new variable called `message' is created.
      var message = name + ", who is " + age + " years old, says hi!";
    
      // Within the same environment (the one we're currently executing in), a
      // function is defined, which creates a new closure that references this
      // environment. Thus, this function can access the variables `message', `name',
      // and `age' within this environment, as well as all variables within any
      // parent environments (which is just the global environment in this example).
      return function greet() { console.log(message); };
    }
    

    When var bobGreeter = greeter("Bob", 47); is run, a new closure is created; that is, you've now got a new function instance along with the environment in which it was created. Therefore, your new function has a reference to the `message' variable within said environment, although no one else does.

    Extra reading: SICP Ch 3.2. Although it focuses on Scheme, the ideas are the same. If you understand this chapter well, you'll have a good foundation of how environments and lexical scoping work.

    Mozilla also has a page dedicated to explaining closures.

    0 讨论(0)
提交回复
热议问题