模块导入时自动(取消)初始化

发布于 2024-12-05 11:07:01 字数 105 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

相思碎 2024-12-12 11:07:01

听起来你特别想编写一个 module.init() 方法和一个 module.stop() 方法,

我个人讨厌导入模块时在模块中执行的事情,至少在我想执行的时候给我一个选择。

Sounds like you specifically want to write a module.init() method and a module.stop() method

I personally HATE things being executed in the module when I import it, at least give me a choice when I want to execute it.

赴月观长安 2024-12-12 11:07:01

这是我发现的一种方法:

class __ModuleInitializer:
    def __init__(self):
        print('Module was initialized')

    def __del__(self):
        print('Module was deinitialized')

__module_init = __ModuleInitializer()

Here's one way I found, to do this:

class __ModuleInitializer:
    def __init__(self):
        print('Module was initialized')

    def __del__(self):
        print('Module was deinitialized')

__module_init = __ModuleInitializer()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文