Java System gc()方法

java.lang.System.gc() 方法运行垃圾回收器。调用这表明Java虚拟机一些努力工作,以使他们目前占据可快速重复使用的内存回收未使用的对象。

1 语法

public static void gc()

2 参数

3 返回值

此方法不返回任何值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java System gc()方法
 */
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...

 

热门文章

优秀文章