void java.lang.System.gc()

void java.lang.System.gc()

Runs the garbage collector.

Calling the gc method suggests that the Java Virtual Machine expend effort toward recycling unused objects in order to make the memory they currently occupy available for quick reuse. When control returns from the method call, the Java Virtual Machine has made a best effort to reclaim space from all discarded objects.

The call System.gc() is effectively equivalent to the call:

Runtime.getRuntime().gc()
See Also:
java.lang.Runtime.gc()

原文地址:https://www.cnblogs.com/fengzhblog/p/3227427.html