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.

  • 相关阅读:
    JAVA基础——异常详解
    Android Studio如何配置adb以及常用命令
    利用Android Studio编写 Android上的c与c++程序
    启动与销毁Activity
    应用资源概览
    Android 开发者文档 -- 应用基础知识
    51单片机最小系统
    同相放大器
    反相放大器
    面向对象开发C++快速入门视频教程 C++基础加实战视频教程
  • 原文地址:https://www.cnblogs.com/Ice-Max/p/5742100.html
Copyright © 2011-2022 走看看