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

python第二十五课——闭包

时间:2019-02-26 00:52:56      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:函数对象   pytho   对象   条件   style   python   %s   hello   返回值   


满足闭包的三个条件:

1).有外部函数和内部函数这样的结构

2).外部函数中定义的变量被内部函数所使用

3).内部函数对象作为返回值被外部函数返回

演示闭包的定义和使用:
def outer():
    a=10
    def inner():
        print(a+10)
    return inner

i=outer()
i()
print(i,type(i))

强化闭包的使用:

案例1:
def outer():
    # count=[0]
    count=0
    def inner():
        nonlocal  count
        # count[0]+=1
        count+=1
        print(hello,hank,%s haha%count)
    return inner()

i=outer()
j=outer()
print(id(i),id(j))


def outer():
    num1=10
    num2=20
    def inner(num3):
        print(num1+num3)
        print(num2+num3)
    return inner

i=outer()
i(100)
outer()(200)

python第二十五课——闭包

标签:函数对象   pytho   对象   条件   style   python   %s   hello   返回值   

原文地址:https://www.cnblogs.com/hankleo/p/10434792.html

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