The JVM runtime usually does an excellent job in managing the Java heap. Some application
programmers use the System.gc() method call to release memory. This is normally unnecessary
and often adversely affects the JVM by executing global garbage collections which can cause
the JVM to pause.
|