Run Garbage collector Permanently deleted user 创建于 2008年06月09日 08:20 What does the Run Garbage collector button on the bottom right of IDEA mean? AFAIK, there is no way to force garbage collection.
Try it out yourself.
bodhi wrote:
System.gc();
N.
In theory that doesn't force a GC (as per the javadocs) however in practice
it does on Sun VMs, especially if called a few times in a row.
>> What does the Run Garbage collector button on the bottom right of
>> IDEA mean? AFAIK, there is no way to force garbage collection.
>>
It asks the VM politely to do (some) garbage collection.
RRS