Garbage Collection

Java system threads automatically handle garbage collection.

Garbage collection can not be forced.



Suggesting Java virtual machine to expend effort toward recycling unused objects in order to make the memory they currently occupy available for quick reuse:

java.lang.System.gc();

java.lang.Runtime.gc();

你可能感兴趣的:(java)