Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With the new automatic reference counting (ARC) introduced in Xcode 4.2, we no longer need to manually manage retain / release in Objective-C.

This seems similar to garbage collection, as done in Objective-C on the Mac, and in other languages. How does ARC differ from garbage collection?

share|improve this question

3 Answers

up vote 21 down vote accepted

the short and sweet answer is as follow:

GC of java is Runtime, while ARC is compile time.

GC has reference to the objects at runtime and check for the dependencies of object runtime. While ARC appends the release, retain, autorelease calls at compiletime.

share|improve this answer
+1 for a very concise yet meaningful distillation. – Eric Jan 6 at 15:41

As I describe in my answer here, ARC can provide the best of both manual memory management and garbage collection. It mostly removes the need for a developer to track manual retains, releases, and autoreleases on Objective-C objects, yet avoids the need for a garbage collector process which can use up limited resources on a mobile device and cause occasional stutters in a running application.

ARC handles memory management at compile time, by applying the rules that all Objective-C developers have had to use over the years. This frees the developer from having to manage this themselves. Because this is handled at compile time, no collector process is needed to continually sweep memory and remove unreferenced objects.

One slight advantage that garbage collection has over ARC is that ARC will not deal with retain cycles for you, where garbage collection can pick these up.

A great read on the subject comes from this thread on Apple's Objective-C mailing list(this may not load right now, as Apple's mailing list archive servers appear to be down today) where Chris Lattner has this to say:

The primary advantage of GC over ARC is that it collects retain cycles. A secondary advantage is that "retained" assignments are "atomic" because they are a simple store. ARC has several big advantages over libauto GC:

  1. It has deterministic reclamation of objects (when the last strong reference to the object goes away) where GC frees an object "sometime later". This defines away a class of subtle bugs that can exist in GC apps that aren't exposed because the collector doesn't trigger "in the buggy window".
  2. The high water mark is generally much lower with ARC than GC because objects are released sooner.
  3. libauto provides a fragile programming model, you have to be careful to not lose write barriers etc.
  4. not all of the system frameworks are GC clean, and the frameworks do occasionally regress as they evolve.
  5. ARC doesn't suffer from false roots. libauto conservatively scans the stack, which means that integers that look like pointers can root object graphs.
  6. ARC doesn't have anything that kicks in and stops your app, causing UI stutters. libauto is pretty advanced as far as GC implementations go because it doesn't immediately stop every thread, but it still does usually end up stopping all the UI threads.

I am currently migrating both my manually memory managed projects, as well as those using garbage collection, to ARC. After using garbage collection in a couple of Mac applications for a while now, I see some significant advantages in moving these projects to ARC.

share|improve this answer
1  
Another advantage of ARC over libauto would be that is does not reduce the virtual address space. See stackoverflow.com/a/5522746/104790 – Nikolai Ruhe Feb 15 '12 at 14:48

GC - Garbage collection - form of automatic memory managemen

ARC - Automatic Reference Counting implements automatic memory management for Objective-C objects and blocks, freeing the programmer from the need explicitly insert retains and releases. It does not provide a cycle collector; users must explicitly manage lifetime instead.

Java GC - Automatic memory management for Java objects.

So the main difference is that one work for objects of Objective-C and the second for Java objects, that are generally different environments.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.