DEVFYI - Developer Resource - FYI

How can you force garbage collection?

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

108. How can you force garbage collection?

You can't force GC, but could request it by calling System.gc(). JVM does not guarantee that GC will be started immediately.

(Continued on next question...)

Other Interview Questions