美文网首页
python--闭包

python--闭包

作者: 哈喽小生 | 来源:发表于2017-11-02 15:30 被阅读0次

    #闭包似优化了变量,原来需要类对象完成的工作,闭包也可以完成

    #由于闭包引用了外部函数的局部变量,则外部函数的局部变量没有及时释放,消耗内存

    #示例一

    # def user():

    #    print("this is boy")

    #    def users():

    #        print("this is good boy")

    #

    #    return user

    #

    # res = user()

    # print(res)

    #示例二

    def num(a,b):

         def number(x):

          returna*x + b

    return  number

    res = num(1,2)

    print(res)

    相关文章

      网友评论

          本文标题:python--闭包

          本文链接:https://www.haomeiwen.com/subject/wwaopxtx.html