码迷,mamicode.com
首页 > 编程语言 > 详细

python 闭包

时间:2017-12-30 13:23:25      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:post   ret   test   div   python   例子   col   应用   func   

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

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 闭包

标签:post   ret   test   div   python   例子   col   应用   func   

原文地址:https://www.cnblogs.com/gundan/p/8149544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!