Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我__init__()在 Python 类中经常使用函数来在第一次调用类时进行设置。
__init__()
脚本关闭时是否调用了等效函数?
__del__当对象完成时,有一个方法会被调用。但是,python 不保证__del__在解释器退出时会在对象上实际调用它。
__del__
有几种选择:
with
__exit__
如果您做了一些非常讨厌的事情来退出程序(例如,以某种方式导致分段错误或通过退出os._exit) ,这两个选项都会失败
os._exit