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!!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Both are same. The only diff is System.gc() is a class method where as |
||||
|
|
|
From looking at the source code:
So it's just a convenience method. |
|||
|
|
|
|
|||||||||||||
|
|
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(). |
|||
|
|
|
|
||||
|
|
