appkit 应用程序中的自动释放池

发布于 2024-09-29 05:48:23 字数 118 浏览 3 评论 0原文

我很难准确理解 AppKit 应用程序中自动释放池的创建和释放时间。

例如,如果我有一个覆盖 init 的 ApplicationController 类,是否有一个自动释放池在启动之前创建并在结束后耗尽?

I'm having difficulties to understand exactly WHEN autorelease pools are created and released in AppKit apps.

For example, if I have an ApplicationController class that overrides init, is there an autorelease pool that gets created before it starts and gets drained after it ends?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

路还长,别太狂 2024-10-06 05:48:24

AppKit 应用程序中的主线程运行 NSRunLoop 来处理事件。 NSRunLoop 每次处理新事件(或计时器)时都会创建一个新的自动释放池,并在控制流返回到 NSRunLoop 后耗尽它。因此本质上,每次运行循环都有一个新的自动释放池。

The main thread in an AppKit application runs an NSRunLoop to process events. NSRunLoop creates a new autorelease pool every time it processes a new event (or timer) and drains it once control flow has returned to the NSRunLoop. So in essence, every pass through the run loop has a fresh autorelease pool.

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