0 votes
in JAVA by
What does System.gc() and Runtime.gc() methods do?

1 Answer

0 votes
by

These methods can be used as a hint to the JVM, in order to start a garbage collection. However, this it is up to the Java Virtual Machine (JVM) to start the garbage collection immediately or later in time.

Source: github.com/snowdream   

...