How do weak and strong references look like in obj

2019-02-02 16:21发布

Wikipedia states "In computer programming, a weak reference is a reference that does not protect the referenced object from collection by a garbage collector". How do those two types of references look like in code? Does a weak reference is a reference made by an autoreleased message?

2条回答
唯我独甜
2楼-- · 2019-02-02 16:43

A weak reference is a reference that isn't strong enough to force an object to remain in memory while a strong reference forces an object to remain in memory.

If you have created weak reference to any variable, you may get nil for that.

UITableViewDelegate, UIScrollViewDelegate, etc are examples of weak references.

Example of Strong reference :

MyClass *obj1 = [[Myclass alloc] init];

Myclass *obj2 = obj1;

Here obj2 has strong reference to obj1 mean if you remove obj2 from memory then obj1 also get removed.

查看更多
SAY GOODBYE
3楼-- · 2019-02-02 16:55

The following answer is for the case when there is no garbage collection (such as on iOS). In the case of garbage collection, there is actually a keyword (__weak) to create a weak reference.

A "weak" reference is a reference that you do not retain.

You need to use these weak references to break up cycles. A common case is a child object that needs a reference to its parent object. In this scenario, the parent would retain a reference to the child object, and the child object has a reference to its parent, but does not retain it. This works because the child object only needs to exist as long as the parent object does.

Does a weak reference is a reference made by an autoreleased message?

Not really, that would be a "very weak reference" ;-)

Auto-released stuff goes away when the call stack is unwound (at the end of every event loop for example). If you need anything to be less temporary, you need to retain a reference (or like in the case above be sure that some other part retains it sufficiently).

查看更多
登录 后发表回答