python 闭包

Posted 魂~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 闭包相关的知识,希望对你有一定的参考价值。

一、一个闭包的实际应用例子

1 def func(a, b):
2     def inner(x):
3         return a * x + b
4     return inner
5 
6 inn = func(1, 1)
7 print(inn(1))
8 inn2 = func(-1, 1)
9 print(inn2(1))

二、闭包传递的参数为函数。

 1 def func(func_temp):
 2     def inner(x):
 3         func_temp(x)
 4     return inner
 5 
 6 
 7 def test(arg):
 8     print(test func. %s % arg)
 9 
10 
11 inn = func(test)
12 inn(xxx)

用修饰器会更方便。

 

以上是关于python 闭包的主要内容,如果未能解决你的问题,请参考以下文章

Python进阶闭包(Closure)

python闲谈--闭包

python中对 函数 闭包 的理解

Python深入04 闭包

理解Python中的闭包

python闭包