python函数中的函数(闭包)用法实例

本文实例讲述了python闭包的用法。分享给大家供大家参考,具体如下:

python函数中也可以定义函数,也就是闭包。跟js中的闭包概念其实差不多,举个python中闭包的例子。

def make_adder(addend):
def adder(augend):
return augend + addend
return adder
p = make_adder(23)
q = make_adder(44)
print(p(100))
print(q(100))

运行结果是:123和144.

为什么?python中一切皆对象,执行p(100),其中p是make_adder(23)这个对象,也就是addend这个参数是23,你又传入了一个100,也就是augend参数是100,两者相加123并返回。

有没有发现make_adder这个函数,里面定义了一个闭包函数,但是make_adder返回的return却是里面的这个闭包函数名,这就是闭包函数的特征。

再看一个python闭包的例子:

def hellocounter (name):
count=[0]
def counter():
count[0]+=1
print(‘hello,’,name,’,’,count[0],’ access!’)
return counter
hello = hellocounter(‘ma6174’)
hello()
hello()
hello()

运行结果:

tantengdemacbook-pro:learn-python tanteng$ python3 closure.py
hello, ma6174 , 1 access!
hello, ma6174 , 2 access!
hello, ma6174 , 3 access!

使用闭包实现了计数器的功能,这也是闭包的一个特点,返回的值保存在了内存中,所以可以实现计数功能。

转自:小谈博客 http://www.tantengvip.com/2015/07/python-closure/

希望本文所述对大家python程序设计有所帮助。

Posted in 未分类

发表评论