典型的闭包
典型的闭包是一个函数A内声明并返回一个函数B供外部使用,函数B内用到了A内部的局部变量或者形参。外界对A函数内变量的引用导致A作用域不能被释放,构成一个闭包。
function counter(n) {
let num = 0
function add(){
num += n
console.log(num)
}
return add
}
let addOne = counter(1)
addOne() //1
addOne() //2
换一种写法
const sum = a => b => a + b
console.log(sum(3)(4))
// 还原
function sum(a) {
return function(b) {
return a + b
}
}
非典型的闭包
非典型的场景是函数B不一定直接返回,只要B能够再次被调用,都构成闭包。比如A返回的是一个对象,而函数B是对象的属性。或者函数B能在setTimeout延时结束时的触发。
返回一个对象
function Counter() {
let num = 0
return {
add(){
num++
console.log(num)
}
}
}
let counter = Counter()
counter.add() // 1
counter.add() // 2
什么都不返回
function Counter() {
let num = 0
function add(){
num ++
console.log(num)
}
window.add = add
}
let counter = Counter()
add()
setTimeout
function Counter() {
let num = 0
function add(){
num ++
console.log(num)
}
setTimeout(add, 1000)
}
let counter = Counter()
闭包的作用
1. 用来暂存“当时”的状态;
2. 用来“封装”一些数据
封装数据/模块模式/IIFE
const cache = (() => {
const store = {}
return {
get(key) {
return store[key]
},
set(key, val) {
store[key] = val
},
remove(key) {
delete store[key]
}
}
})();
// 我们可以间接的访问store,但是不能直接访问,相当于把store对象封装了起来
console.log(cache) //{get: ƒ, set: ƒ, remove: f}
cache.set('name', '刘德华')
cache.get('name'); // '刘德华'
cache.remove('name')
暂存数据/高阶函数/Curry
const makeUrl = domain => path => `https://${domain}${path}`
const makeBdUrl = makeUrl('baidu.com')('/about')
const makdJdUrl = makeUrl('jd.com')('/index')
console.log(makeBdUrl)
相关题目
题1:以下代码输出什么? 如果想输出 0、1、2、3、4 需要怎样修改
for(var i=0; i<5; i++){
setTimeout(function(){
console.log('clock:' + i )
}, 0)
}
// clock5 * 5
//方法1
for(let i=0; i<5; i++) {
setTimeout(() => {
console.log('clock:' + i )
}, 0)
}
//方法2
for(var i=0; i<5; i++) {
((i) => {
setTimeout(() => {
console.log('clock:' + i )
}, 0)
})(i)
}
//方法3
for(var i=0; i<5; i++) {
setTimeout(((i) => () => {
console.log('clock:' + i )
})(i), 0)
}
题2:以下代码输出什么
function Counter(n) {
let num = 0
function add(){
num += n
console.log(num)
}
return add
}
let counter1 = Counter(1)
counter1() // 1
counter1() // 2
// 新闭包
let counter2 = Counter(2)
counter2() // 2
counter2() // 4
题3:当点击li时输出什么?
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<script>
let $arrLi = document.querySelectorAll('li')
for(var i=0; i<$arrLi.length; i++) {
$arrLi[i].onclick = function() {
console.log(i)
}
}
</script>
// 无论点击哪个li,都输出4
// 方法1
for(let i=0; i<$arrLi.length; i++) {
$arrLi[i].onclick = function() {
console.log(i)
}
}
// 方法2
for(var i=0; i<$arrLi.length; i++) {
((i) => {
$arrLi[i].onclick = function() {
console.log(i)
}
})(i)
}
// 方法3
for(let i=0; i<$arrLi.length; i++) {
$arrLi[i].onclick = ((i) => function() {
console.log(i)
})(i)
}
题4:把函数 sum(a, b, c) 变成 sum(a)(b, c) 的形式。
function sum(a, b, c) {
return a + b + c
}
// 普通函数
function sum(a) {
return function(b, c) {
return a + b + c
}
}
// 箭头函数
const sum = a => (b, c) => a + b + c
题5:补全代码,把函数fn(a, b, c) 的调用形式变成 fn(a)(b)(c) 的调用形式。 fn的参数个数不定。
function sum(a, b, c, d) {
return a + b + c + d
}
function curry(fn) {
//补全
}
let newSum = curry(sum)
newSum(1)(2)(3)(4)
function sum(a, b, c, d) {
return a + b + c + d
}
function curry(fn) {
return function curried(...args) {
if(args.length >= fn.length) {
return fn(...args)
} else { // 参数不够,返回的都是函数
return function(...args2) {
return curried(...args.concat(args2))
}
}
}
}
let newSum = curry(sum)
newSum(1)(2)(3)(4)
newSum(1)(2,3)(4)