保留和复制之间到底有什么区别?它对引用计数有什么意义?
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
这篇关于保留和复制的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!