Python学习————闭包函数

Posted Dimple_Y

tags:

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

一:大前提:

闭包函数=名称空间与作用域+函数嵌套+函数对象
核心点:名字的查找关系是以函数定义阶段为准

二:什么是闭包函数

"闭"函数指的该函数是内嵌函数
"包"函数指的该函数包含对外层函数作用域名字的引用(不是对全局作用域)

闭包函数:名称空间与作用域的应用+函数嵌套

def f1():
    x = 33333333333333333333
    def f2():
        print(x)
    f2()

x=11111
def bar():
    x=444444
    f1()

def foo():
    x=2222
    bar()

foo()


闭包函数:函数对象

def f1():
    x = 33333333333333333333
    def f2():
        print(\'函数f2:\',x)
    return f2

f=f1()



print(f)

x=4444

f()

def foo():
    x=5555
    f()

foo()

三:为何要有闭包函数=》闭包函数的应用

两种为函数体传参的方式
方式一:直接把函数体需要的参数定义成形参

def f2(x):
    print(x)

f2(1)
f2(2)
f2(3)

方式二:
def f1(x): # x=3
    x=3
    def f2():
        print(x)
    return f2

x=f1(3)
print(x)

x()



import requests

传参的方案一:

def get(url):
    response=requests.get(url)
    print(len(response.text))

get(\'https://www.baidu.com\')
get(\'https://www.cnblogs.com/linhaifeng\')
get(\'https://zhuanlan.zhihu.com/p/109056932\')

传参的方案二:

def outter(url):

url=\'https://www.baidu.com\'

​    def get():
​        response=requests.get(url)
​        print(len(response.text))
​    return get

baidu=outter(\'https://www.baidu.com\')
baidu()

cnblogs=outter(\'https://www.cnblogs.com/linhaifeng\')
cnblogs()

zhihu=outter(\'https://zhuanlan.zhihu.com/p/109056932\')
zhihu()

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

Python进阶闭包(Closure)

python学习笔记——闭包

Python学习————闭包函数

python学习第三十二天函数的闭包

Python3.x基础学习-闭包函数

Python学习笔记-装饰器