函数的闭包
Posted passengerlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数的闭包相关的知识,希望对你有一定的参考价值。
1:闭包:嵌套函数,且内部函数调用外部函数的变量
# 闭包的基础应用
def outer(): a = 1 def inner(): print(a) inner() outer() def outer(): a = 2 def inner(): print(a) return inner # 把inner的内存地址返回,让res接收,方便以后在外部使用内部函数inner(),即使用时直接调用res(),而这就是闭包的方便之处。 res = outer() res()
2:
# 原获取网页源代码的方法 from urllib.request import urlopen ret = urlopen(‘http://www.meitulu.com‘).read() print(ret)
# 使用闭包获取
from urllib.request import urlopen def func(): url = ‘http://www.meitulu.com‘ def inner(): res = urlopen(‘http://www.meitulu.com‘).read() print(res) return inner func1 = func() func1()
以上是关于函数的闭包的主要内容,如果未能解决你的问题,请参考以下文章
Groovy闭包 Closure ( 闭包参数绑定 | curry 函数 | rcurry 函数 | ncurry 函数 | 代码示例 )
Groovy闭包 Closure ( 闭包作为函数参数 | 代码示例 )