函数-Ⅳ
>>> # 嵌套作用域的特性>>> # 对于嵌套函数来说,外层函数的作用域是会通过某种形式保存下来的,它并不会跟局部作用域那样,调用完就消失。
>>> def funA():
... x = 520
... def funB():
... print(x)
... return funB
...
>>> funA()
<function funA.<locals>.funB at 0x01A8A340>
>>> funA()()
520
>>> funny = funA()
>>> funny
<function funA.<locals>.funB at 0x01A8A2F8>
>>> funny()
520
>>> # 所谓闭包(closure),也有人称之为工厂函数(factory function)
>>> def power(exp):
... def exp_of(base):
... return base ** exp
... return exp_of
...
>>> square = power(2)
>>> cube = power(3)
>>> square(2)
4
>>> cube(5)
125
>>> square
<function power.<locals>.exp_of at 0x01A8A268>
>>> cube
<function power.<locals>.exp_of at 0x01A8A340>
>>> # 这里 power() 函数就像是一个工厂,由于参数不同,得到了两个不同的 “生产线”,一个是 square(),一个是 cube(),前者是返回参数的平方,后者是返回参数的立方。
>>> fun()括号里的我一直不明白是啥{:10_260:} MrPencil 发表于 2023-3-12 01:37
fun()括号里的我一直不明白是啥
>>> funA()
<function funA.<locals>.funB at 0x01A8A340>
at 0x01A8A340>这个表示funA里funB的地址,是一个引用地址。
()表示执行
>>> def funA():
... x = 520
... print(x)
... def funB():
... print("funB")
... return funB
...
>>> funA()
520
<function funA.<locals>.funB at 0x0221A340>
>>> funA()()
520
funB
>>> MrPencil 发表于 2023-3-12 01:37
fun()括号里的我一直不明白是啥
或者去复习一下C语言的指针这一块,大概就能了解了
页:
[1]