Python的闭包
2019-01-03 09:57:39来源:博客园 阅读 ()
什么是闭包
#定义一个函数
def test(number):
#在函数内部再定义一个函数,并且这个函数用到了外边函数的变量,那么将这个函数以及用到的一些变量称之为闭包
def test_in(number_in):
print("in test_in 函数, number_in is %d"%number_in)
return number+number_in #其实这里返回的就是闭包的结果 return test_in #给test函数赋值,这个20就是给参数
numberret = test(20)#注意这里的100其实给参数
number_inprint(ret(100))#注意这里的200其实给参数
number_inprint(ret(200))
运行结果:
in test_in 函数, number_in is 100
120
in test_in 函数, number_in is 200
220
内部函数对外部函数作用域里变量的引用(非全局变量),则称内部函数为闭包。
理解闭包
def counter(start=0):
count=[start]
def incr():
count[0] += 1
return count[0]
return incr
c1=counter(5)
print(c1())
print(c1())
c2=counter(100)
print(c2())
print(c2())
运行结果
6
7
101
102
函数返回给变量后,函数不会释放,当改变函数中的变量是,下次调用依旧是这个变量
使用nonlocal访问外部函数的局部变量(python3)
def counter(start=0):
def incr():
nonlocal start
start += 1
return start
return incr
c1 = counter(5)
print(c1())
print(c1())
闭包在实际中的使用
def line_conf(a, b):
def line(x):
return a*x + b
return line
line1 = line_conf(1, 1)
line2 = line_conf(4, 5)
print(line1(5))
print(line2(5))
相当于先设定好变量值,当使用的时候就可以直接传递关注的参数就可以了
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash