java.lang.System.gc()方法实例
java.lang.System.gc() 方法运行垃圾回收器。调用这表明Java虚拟机一些努力工作,以使他们目前占据可快速重复使用的内存回收未使用的对象。
声明
以下是java.lang.System.gc()方法的声明
public static void gc()
参数
-
NA
返回值
此方法不返回任何值。
异常
-
NA
例子
下面的例子显示java.lang.System.gc()方法的使用。
package com.yiibai; import java.lang.*; public class SystemDemo { public static void main(String[] args) { int arr1[] = { 0, 1, 2, 3, 4, 5 }; int arr2[] = { 0, 10, 20, 30, 40, 50 }; // copies an array from the specified source array System.arraycopy(arr1, 0, arr2, 0, 1); System.out.print("array2 = "); System.out.print(arr2[0] + " "); System.out.println(arr2[1] + " "); // it runs the GarbageCollector System.gc(); System.out.println("Cleanup completed..."); } }
让我们编译并运行上述程序,这将产生以下结果:
array2 = 0 10 Cleanup completed...