释放静态分配的 nsarray

发布于 2024-11-10 15:53:52 字数 67 浏览 0 评论 0原文

我的班级有一个静态数组。我什么时候释放它?或者我不必担心? 我正在考虑用 dealloc 方法释放它,但不确定。 谢谢

I have a static array in my class. When do i release it? or I don't have to worry about it?
I was thinking about releasing it in dealloc method but not sure.
Thanks

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

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

发布评论

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

评论(2

木森分化 2024-11-17 15:53:52

如果它是静态的,则不应释放它。

If it's static, you shouldn't release it.

宁愿没拥抱 2024-11-17 15:53:52

如果您担心数组占用的内存量(因为它可能很大,并且您可以根据需要随时重新创建),您可以在收到 didReceiveMemoryWarning 通知后清空该数组。否则真的没有理由太在意它。

If you are concerned about the amount of memory the array takes up (because it's potentially large and is something that you can always recreate if needed), you can empty the array upon receiving a didReceiveMemoryWarning notification. Otherwise there's really no reason to care too much about it.

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