安全 NSArray 访问
我希望 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同步对数组的访问,就像对跨线程共享的资源的任何访问一样。
Synchronize access to the array, as you should any access to resources shared across threads.