定义变量的属性时如何决定是保留变量还是赋值或复制变量?
我想知道在声明属性时何时使用 copy
、retain
或 assign
。
另外,为什么在声明属性时使用 nonatomic
?
I'd like to know when to use copy
, retain
or assign
when declaring a property.
Also, why is nonatomic
used when declaring a property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否阅读过内存管理指南 ?答案都在里面了。
这听起来可能是一个轻率的反应。但答案就在文档中。您在这里得到的答案将只是文档的摘要,您将失去自己学习内存管理的乐趣,并且您将在阅读 Apple 文档中获得重要的练习,这将在您学习的过程中为您提供帮助。
Have you read the Memory Management Guide? The answers are all in there.
This may sound like a flippant response; but the answers are in the docs. The answers you get here will just be a summary of the documentation, and you will lose the pleasure of learning about memory management for yourself, and you will get vital practice in reading Apple Documentation which will help you as your learning progresses.