{class foo(object):
def __enter__ (self):
print("Enter")
def __exit__(self,type,value,traceback):
print("Exit")
def method(self):
print("Method")
with foo() as instant:
instant.method()}
执行这个 py 文件,控制台会显示这些消息:
Enter
Exit
instant.method()
AttributeError: 'NoneType' object has no attribute 'method'
找不到方法?