Difference between retain and copy?(保留和复制的区别?)
问题描述
保留和复制之间到底有什么区别?它对引用计数有什么意义?
What exactly is the difference between retain and copy? what is its significance on reference counting?
我知道当使用 alloc/retain 分配对象时,引用计数会增加一.那么如何使用副本?
I know that when an object is allocated using alloc/retain, reference count goes up by one. so how about using copy?
与此相关的另一个问题是,使用之间的区别
@property(nonatomic, retain) 和 @property(nonatomic,copy)?
Another question relating to this is, the difference between using
@property(nonatomic, retain) and @property(nonatomic,copy)?
推荐答案
retain -- 在创建的对象上完成,它只是增加引用计数.
retain -- is done on the created object, it just increase the reference count.
复制——创建一个新对象
copy -- create a new object
这篇关于保留和复制的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:保留和复制的区别?
- android 4中的android RadioButton问题 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01