模块导入时自动(取消)初始化
在 Python 中,无论模块何时需要某种初始化,为了自动完成,您都可以将代码放入模块中(缩进为零),以便在第一次导入时执行(对吗?)。当应用程序关闭并收集模块时,有什么方法可以自动取消初始化吗?
In Python, whever a module needs some kind of initialization, in order for it to be done automatically, you can just place the code in the module (with zero indent) to be executed on the first import (right?). Is there any way to do automatic deinitialization when the application closes and the modules get collected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来你特别想编写一个
module.init()
方法和一个module.stop()
方法,我个人讨厌导入模块时在模块中执行的事情,至少在我想执行的时候给我一个选择。
Sounds like you specifically want to write a
module.init()
method and amodule.stop()
methodI personally HATE things being executed in the module when I import it, at least give me a choice when I want to execute it.
这是我发现的一种方法:
Here's one way I found, to do this: