终止挂起的 NSTask

发布于 2024-09-02 19:17:31 字数 80 浏览 5 评论 0原文

如果我终止(或中断)一个挂起的 NSTask,那么它仍然会显示在活动监视器中。它没有运行,因为 CPU 为 0%,但它仍然占用内存。有解决办法吗?

If I terminate (or interrupt) a suspended NSTask, then it still shows up in activity monitor. It isn't running because the CPU is 0% but it's still taking up memory. Is there a work around?

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

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

发布评论

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

评论(1

岁吢 2024-09-09 19:17:31

如果您使用Alloc/init实例化了NSTask,应该没有问题。
NSTask最终会被垃圾收集器捕获,内存也会相应地被清除。
当应用程序完全关闭时,分配的空间和内存也将被清除,就像它应该的那样。

If you have instantiated the NSTask by using Alloc/init, there should be no problem.
The NSTask will eventually get caught by the garbage collector, and the memory will be cleared accordingly.
When the application closes entirely the allocated space and memory will be cleared aswell, like it should.

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