在Python中,延迟绑定是指在闭包中使用外部变量时,变量的值在函数被调用时决定,而不是在函数定义时决定。要设置延迟绑定,可以使用nonlocal
关键字。
下面是一个示例:
def outer_function():
x = 10
def inner_function():
nonlocal x
x += 1
print(x)
return inner_function
closure = outer_function()
closure() # 输出 11
closure() # 输出 12
在上面的例子中,outer_function
返回了一个闭包inner_function
,在inner_function
中使用了nonlocal
关键字来声明x
是外部函数outer_function
中的变量。每次调用闭包closure
时,x
的值会延迟绑定并自增1。