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

I just want to know what is the difference between System.gc() and runtime.gc(). And how do they differ, when it is all about doing GC!!

share|improve this question
2  
you should learn to look at the javadocs first. And if the Android javadocs don't answer your questions go to the Sun / Oracle javadocs next. (Yea, I know the code is different, but as a general rule the behaviour is the same ...) – Stephen C Jun 1 '11 at 7:06

5 Answers

up vote 18 down vote accepted

Both are same. System.gc() is effectively equivalent to Runtime.gc(). System.gc() internally calls Runtime.gc().

The only diff is System.gc() is a class method where as Runtime.gc() is an instance method. So, System.gc() is more convenient.

share|improve this answer

From looking at the source code: System.gc() is implemented as

Runtime.getRuntime().gc();

So it's just a convenience method.

share|improve this answer

See the docs

System.gc() is equivalent to Runtime.getRuntime().gc()

share|improve this answer
Please link to an updated version of the docs. 1.4.2 is really old. – Asaph Jun 1 '11 at 6:57
1  
Sorry, was just using the first thing Google gave me. Which really reflects badly on the OP -- this is a question Google can answer. – trutheality Jun 1 '11 at 7:00
Thanks for fixing it. I would say that it reflects badly on Google. Why are outdated docs the top search results? Can't Google rank the new docs higher than the old ones? – Asaph Jun 1 '11 at 7:09
AFAIK Google ranks pages mostly by hits, and older docs are going to rank higher because they've been around longer. Also: it did rank the latest highest when I searched for "java lang System" the first one was from searching "System.gc()". So it sometimes does it. – trutheality Jun 1 '11 at 7:13
I've been seeing this with Google search results for java APIs for years. You can rationalize the behavior all you want. The desired behavior is to show current docs at the top of the list. Showing old docs first is broken and it would be nice if Google fixed it already. It's been years. – Asaph Jun 1 '11 at 7:32

In the runtime system the gc is instance method but in system method the gc is static .

because of this reason we prefer to use system.gc().

share|improve this answer

Runtime.gc() is a native method where as System.gc() is non - native method which in turn calls the Runtime.gc()

share|improve this answer
try to elaborate it – Kailash Dabhi Oct 26 '12 at 5:29

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.