安全 NSArray 访问

发布于 2024-10-03 09:34:55 字数 230 浏览 3 评论 0原文

我希望 objectAtIndex: 返回一个保留且自动释放的对象供我使用,但我对自动释放池的测试表明事实并非如此。

在这种情况下,我如何保护自己免受另一个线程从数组中删除对象之后我使用objectAtIndex检索其引用但之前 我有机会使用或保留该参考资料吗?

I expected objectAtIndex: to return a retained and autoreleased object for my use, but my tests with autorelease pools indicate they do not.

This being the case, how do I protect myself against another thread removing an object from an array after I retrieve its reference using objectAtIndex but before I have a chance to use or retain that reference?

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

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

发布评论

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

评论(1

梦亿 2024-10-10 09:34:55

同步对数组的访问,就像对跨线程共享的资源的任何访问一样。

Synchronize access to the array, as you should any access to resources shared across threads.

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