What does System.gc() and Runtime.gc() methods do ?
3 years ago
OOP Java
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.

Surya Bikram Bhandari
Oct 31, 2021