首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

析构函数跟GC

2013-12-23 
析构函数和GCpublic class GcTest{public void finalize(){System.out.println(GcTest is going ...)}p

析构函数和GC

public class GcTest{public void finalize(){System.out.println("GcTest is going ...");}public static void main(String[] args){new GcTest();new GcTest();new GcTest();System.gc();   //没有gc调用,析构函数finalize()不会被调用System.out.println("GcTest is ending ...");}}

?

热点排行