JavaScript 中的 Closure (閉包)

JavaScript

簡介

歷史

開發工具

基本語法

運算式

分枝

迴圈

函數

陣列

物件導向

原型

封裝

繼承

多型

this

控制流程

進階功能

Eval 函數

Closure

JSONP

小書籤

字串

正規表達式

除錯方法

伺服端

播 midi

cookie

套件

ccc函式庫

2D 繪圖

3D 繪圖

影像處理

訊號處理

語音處理

數學計算

tex 數學式

格式轉換

桌面應用

自然語言

地理資訊

平台

Node.js

jQuery

Google

numeric.js

Titanium

引擎

語法

作品

翻譯精靈

繪圖精靈

DotWiki

流程

前端工程師

後端工程師

css

訊息

相關網站

參考文獻

最新修改

簡體版

English

閉包的範例:導函數

<html>
<body>
<script>
// Return a  function that approximates the derivative of f
// using an interval  of dx, which should be appropriately small.
function derivative(f,  dx) {
  return  function (x) {
    return (f(x + dx) - f(x)) / dx;
  };
}
 
var f1 = function (x) { return x*x; }
var df1 = derivative(f1, 0.001);
var df17 = df1(7.0);
document.write("d f1(7)/dx = "+df17);
</script>
</body>
</html>

執行結果

d f1(7)/dx = 14.00100000000748

參考文獻

  1. http://code.google.com/apis/ajax/playground/#closure_simple
  2. http://code.google.com/apis/ajax/playground/#closure_for_events

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License