Run Garbage collector

What does the Run Garbage collector button on the bottom right of IDEA mean? AFAIK, there is no way to force garbage collection.

0
Avatar
Permanently deleted user

Try it out yourself.

0
Avatar
Permanently deleted user

bodhi wrote:

What does the Run Garbage collector button on the bottom right of IDEA mean? AFAIK, there is no way to force garbage collection.

System.gc();

N.

0
Avatar
Permanently deleted user

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.

bodhi wrote:

>> What does the Run Garbage collector button on the bottom right of
>> IDEA mean? AFAIK, there is no way to force garbage collection.
>>

System.gc();

N.



0
Avatar
Permanently deleted user

It asks the VM politely to do (some) garbage collection.

RRS

0

请先登录再写评论。