1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# test scoping rules that involve a class
# the inner A.method should be independent to the local function called method
def test1():
def method():
pass
class A:
def method():
pass
print(hasattr(A, "method"))
print(hasattr(A(), "method"))
test1()
# the inner A.method is a closure and overrides the local function called method
def test2():
def method():
return "outer"
class A:
nonlocal method
def method():
return "inner"
print(hasattr(A, "method"))
print(hasattr(A(), "method"))
return method() # this is actually A.method
print(test2())
# a class body will capture external variables by value (not by reference)
def test3(x):
class A:
local = x
x += 1
return x, A.local
print(test3(42))
# assigning to a variable in a class will implicitly prevent it from closing over a variable
def test4(global_):
class A:
local = global_ # fetches outer global_
global_ = "global2" # creates class attribute
global_ += 1 # updates local variable
return global_, A.local, A.global_
global_ = "global"
print(test4(42), global_)
# methods within a class can close over variables outside the class
def test5(x):
def closure():
return x
class A:
def method():
return x, closure()
closure = lambda: x + 1 # change it after A has been created
return A
print(test5(42).method())
|