zoukankan      html  css  js  c++  java
  • [转]What is closure

    what is closure?

    -- A closure is a function that can access interesting non-local variables

    Variable scope

    When you declare a local variable, that variable has a scope. Generally local variables exist only within the block or function in which you declare them.

    function() {
      var a = 1;
      console.log(a); // works
    }    
    console.log(a); // fails
    

    If I try to access a local variable, most languages will look for it in the current scope, then up through the parent scopes until they reach the root scope.

    var a = 1;
    function() {
      console.log(a); // works
    }    
    console.log(a); // works
    

    When a block or function is done with, its local variables are no longer needed and are usually blown out of memory.

    This is how we normally expect things to work.

    A closure is a persistent local variable scope

    A closure is a persistent scope which holds on to local variables even after the code execution has moved out of that block. Languages which support closure (such as JavaScript, Swift and Ruby) will allow you to keep a reference to a scope (including its parent scopes), even after the block in which those variables were declared has finished executing, provided you keep a reference to that block or function somewhere.

    The scope object, and all its local variables, are tied to the function, and will persist as long as that function persists.

    This gives us function portability. We can expect any variables that were in scope when the function was first defined to still be in scope when we later call the function, even if we call the function in a completely different context.

    For example

    Here's a really simple example in JavaScript that illustrates the point:

    outer = function() {
      var a = 1;
      var inner = function() {
        alert(a);
      }
      return inner; // this returns a function
    }
    
    var fnc = outer(); // execute outer to get inner 
    fnc();
    

    Here I have defined a function within a function. The inner function gains access to all the outer function's local variables, including a. The variable a is in scope for the inner function.

    Normally when a function exits, all its local variables are blown away. However, if we return the inner function and assign it to a variable fnc, so that it persists after outer has exited, all of the variables that were in scope when inner was defined also persist. The variable a has been closed over -- it is within a closure.

    Note that the variable a is totally private to fnc. This is a way of creating private variables in a functional programming language such as JavaScript.

    As you might be able to guess, when I call fnc() it alerts the value of a, which is "1".

    In a language without closure, the variable a would have been garbage collected and thrown away when the function outer exited. Calling fnc would have thrown an error because a no longer exists.

    In JavaScript, the variable a persists because variable scope is created when the function is first declared, and persists for as long as the function continues to exist.

    a belongs to the scope of outer. The scope of inner has a parent pointer to the scope of outerfnc is a variable which points to innera persists as long as fnc persists. a is within the closure.

  • 相关阅读:
    1257: [CQOI2007]余数之和
    BZOJ1036[ZJOI2008]树的统计——树链剖分+线段树
    BZOJ4822[Cqoi2017]老C的任务——树状数组(二维数点)
    BZOJ4196[Noi2015]软件包管理器——树链剖分+线段树
    BZOJ4034[HAOI2015]树上操作——树链剖分+线段树
    BZOJ5415[Noi2018]归程——kruskal重构树+倍增+堆优化dijkstra
    BZOJ2120&2453数颜色——线段树套平衡树(treap)+set/带修改莫队
    BZOJ2141排队——树状数组套权值线段树(带修改的主席树)
    初探莫比乌斯反演及欧拉反演
    BZOJ1146[CTSC2008]网络管理——出栈入栈序+树状数组套主席树
  • 原文地址:https://www.cnblogs.com/Ice-Max/p/5742100.html
Copyright © 2011-2022 走看看